diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main/armor_stand.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/armor_stand.lua b/src/main/armor_stand.lua index e15f177..0cedf8c 100644 --- a/src/main/armor_stand.lua +++ b/src/main/armor_stand.lua @@ -25,7 +25,7 @@ end minetest.register_chatcommand("armorstand", { description = "Spawn an armor stand at your position and fill it with random armor", - privs = {server = true} + privs = {server = true}, func = function(name) local player = minetest.get_player_by_name(name) if not player then return false, "You have to be online to use this command" end |