summaryrefslogtreecommitdiff
path: root/builtin/game/chatcommands.lua
diff options
context:
space:
mode:
authorRui914 <mrrst0914@gmail.com>2015-10-31 08:35:27 +0900
committerest31 <MTest31@outlook.com>2015-10-31 02:28:06 +0100
commit482c4d69b094bddf5e6e10dfc996a972a628850a (patch)
treec082bdd029b3682b51d3f04d93b32dab317b05d5 /builtin/game/chatcommands.lua
parentb6dfae02215d7bd61e06ff1999ee3ecb0ec80b9e (diff)
downloadminetest-482c4d69b094bddf5e6e10dfc996a972a628850a.tar.gz
minetest-482c4d69b094bddf5e6e10dfc996a972a628850a.tar.bz2
minetest-482c4d69b094bddf5e6e10dfc996a972a628850a.zip
minetest. to core.
Diffstat (limited to 'builtin/game/chatcommands.lua')
-rw-r--r--builtin/game/chatcommands.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/game/chatcommands.lua b/builtin/game/chatcommands.lua
index 883aaef4b..5f9fcfc7b 100644
--- a/builtin/game/chatcommands.lua
+++ b/builtin/game/chatcommands.lua
@@ -710,7 +710,7 @@ core.register_chatcommand("time", {
local hour = (current_time - minutes) / 60
return true, ("Current time is %d:%02d"):format(hour, minutes)
end
- local player_privs = minetest.get_player_privs(name)
+ local player_privs = core.get_player_privs(name)
if not player_privs.settime then
return false, "You don't have permission to run this command " ..
"(missing privilege: settime)."