diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-06-11 11:08:46 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-06-11 11:08:46 +0200 |
commit | 0aecd082ac33dab0561ad6ca7df9ceb7466722fd (patch) | |
tree | f248bee51ab59c4d1fef3371b337ddd545c55bf8 /src | |
parent | 0c78a3864f42e3a869f38c4f1b10ce61a7cc70b4 (diff) | |
download | skycraft-0aecd082ac33dab0561ad6ca7df9ceb7466722fd.tar.xz |
Bugfix
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 |