~gpcf/misc-patches

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch

[PATCH] Forgot to add a check with minetest.player_exists for when empty password

Details
Message ID
<20240402163540.1049905-1-erstazi@c-wd.net>
DKIM signature
permerror
Download raw message
Patch: +1 -1
---
 init.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/init.lua b/init.lua
index 0675c26..59b6049 100644
--- a/init.lua
+++ b/init.lua
@@ -288,7 +288,7 @@ minetest.register_on_prejoinplayer(function(name, ip)
		return ("Banned: Expires: %s, Reason: %s"):format(
		  date, e.reason)
	end
	if not xban.has_password(name) then
	if minetest.player_exists(name) and not xban.has_password(name) then
		return "This account has been deactivated. Please, contact the server owner on the forums."
	end
	if minetest.settings:get("moderate_new_accounts") and not minetest.player_exists(name) then
Reply to thread Export thread (mbox)