bypass_userlimit.lua 204 B

123456789101112
  1. local exceptions = {
  2. "_Zaizen_",
  3. "Zughy",
  4. "Giov4",
  5. "XxCrazyMinerxX",
  6. "SonoMichele"
  7. }
  8. minetest.register_can_bypass_userlimit(function(name, ip)
  9. return table.indexof(exceptions, name) > 0
  10. end)