no cooldown for admins

This commit is contained in:
Kimapr 2019-12-29 21:58:05 +05:00
parent d6dfd0b453
commit 1e2e9721e6
1 changed files with 8 additions and 6 deletions

View File

@ -497,6 +497,7 @@ minetest.register_chatcommand("reset",{
description = S"Get a new island", description = S"Get a new island",
privs = {interact = true}, privs = {interact = true},
func = function(name) func = function(name)
if not minetest.check_player_privs(name,{server=true}) then
local utime = minetest.get_server_uptime() local utime = minetest.get_server_uptime()
local cd = cooldowns[name] local cd = cooldowns[name]
if cd and cd > utime then if cd and cd > utime then
@ -504,6 +505,7 @@ minetest.register_chatcommand("reset",{
return return
end end
cooldowns[name] = utime + cooldown cooldowns[name] = utime + cooldown
end
local is = players[name] local is = players[name]
if is then if is then
players[name] = nil players[name] = nil