From 98af16381817b7dee198ccb66a648eedde32707f Mon Sep 17 00:00:00 2001 From: ShadowNinja Date: Tue, 14 Oct 2014 17:52:29 -0400 Subject: [PATCH] Fix typos --- init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index 251dac6..28323b8 100644 --- a/init.lua +++ b/init.lua @@ -49,7 +49,7 @@ minetest.register_on_prejoinplayer(function(name, ip) if iname:lower() == lname and iname ~= name then return "Sorry, someone else is already using this" .." name. Please pick another name." - .." Annother posibility is that you used the" + .." Annother possibility is that you used the" .." wrong case for your name." end end @@ -78,7 +78,7 @@ minetest.register_chatcommand("choosecase", { ------------------------ -- Anti-impersonation -- ------------------------ --- Prevents names that are too similar to annother player's name. +-- Prevents names that are too similar to another player's name. local similar_chars = { -- Only A-Z, a-z, 1-9, dash, and underscore are allowed in playernames @@ -126,7 +126,7 @@ minetest.register_on_prejoinplayer(function(name, ip) for authName, _ in pairs(minetest.auth_table) do if authName ~= name and authName:match(re) then - return "Your name is too similar to annother player's name." + return "Your name is too similar to another player's name." end end end)