Initial commit.

This commit is contained in:
Signal 2026-02-14 12:36:36 -05:00
commit b5c753ff4d
129 changed files with 4472 additions and 0 deletions

View file

@ -0,0 +1,7 @@
local ns = firefly
-- Determine whether the target player is an admin.
local admin = minetest.settings:get("name") -- Assume this will never be changed live.
function ns.is_admin(name)
return name == admin or name == "singleplayer" and firefly.singleplayer_admin
end