autokick.lua 267 B

1234567891011
  1. if not minetest.global_exists("autokick") then autokick = {} end
  2. autokick.kicked_players = autokick.kicked_players or {}
  3. local players = autokick.kicked_players
  4. function autokick.kick_player(pname, time)
  5. time = time or 60
  6. players[pname] = os.time() + time
  7. end