summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcheapie <no-email-for-you@example.com>2026-04-24 05:19:19 -0500
committercheapie <no-email-for-you@example.com>2026-04-24 05:19:19 -0500
commit85bd997848da86e313cb2cdd9433dac2d7b8a973 (patch)
tree3c8d323e94db89fa6011d7e3dcd1fa05ca9226cf
parent90ef0875e8879834a710f9f95a7c3e588b5caebf (diff)
downloaddeprecationwarning-main.tar
deprecationwarning-main.tar.gz
deprecationwarning-main.tar.bz2
deprecationwarning-main.tar.xz
deprecationwarning-main.zip
Change to require 5.12 and list the new dateHEADmain
-rw-r--r--init.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/init.lua b/init.lua
index 5a62ef5..7625f01 100644
--- a/init.lua
+++ b/init.lua
@@ -1,6 +1,6 @@
-local minversion = 42
-local message = "Multicraft and outdated clients (older than 5.7) are not supported and will experience severe issues.\n"..
- "Please update to the latest official Luanti client (from luanti.org/downloads) before 2025-02-01 or you will no longer be able to connect."
+local minversion = 48
+local message = "Outdated clients (older than 5.12) are not supported and will experience graphical issues.\n"..
+ "Please update before 2026-06-21 or you will no longer be able to connect."
core.register_on_joinplayer(function(player)
local info = core.get_player_information(player:get_player_name())
@@ -14,5 +14,5 @@ core.register_on_joinplayer(function(player)
alignment = {x = 0,y = 0},
text = message,
})
- if core.get_modpath("irc") then irc.say(player:get_player_name().." is using Multicraft or an old version") end
+ if core.get_modpath("irc") then irc.say(player:get_player_name().." is using an old version") end
end)