Skip to content

Commit

Permalink
Fix cutoff date for event
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneWolfHT committed Dec 3, 2024
1 parent f618868 commit 7db622a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion santa_hat_event/init.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if os.date("%m") ~= "12" or tonumber(os.date("%d")) < 11 or tonumber(os.date("%d")) > 2
if os.date("%m") ~= "12" or tonumber(os.date("%d")) < 11 or tonumber(os.date("%d")) > 25
or not minetest.get_modpath("server_cosmetics") then return end

local META_KEY = "server_cosmetics:snowballs:"..os.date("%Y")
Expand Down

0 comments on commit 7db622a

Please sign in to comment.