From da66780a569712c23ae4f2996cfb4608a9f9d69d Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 1 Apr 2016 20:02:19 -0400 Subject: copy all standard Dreambuilder mods in from the old subgame (exactly as last supplied there, updates to these mods will follow later) --- xban2/importers/v1.lua | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 xban2/importers/v1.lua (limited to 'xban2/importers/v1.lua') diff --git a/xban2/importers/v1.lua b/xban2/importers/v1.lua new file mode 100644 index 0000000..a3722c7 --- /dev/null +++ b/xban2/importers/v1.lua @@ -0,0 +1,33 @@ + +function xban.importers.v1() + local f, e = io.open(minetest.get_worldpath().."/players.iplist") + if not f then + return false, "Unable to open `players.iplist': "..e + end + for line in f:lines() do + local list = line:split("|") + if #list >= 2 then + local banned = (list[1]:sub(1, 1) == "!") + local entry + entry = xban.find_entry(list[1], true) + entry.banned = banned + for _, name in ipairs(list) do + entry.names[name] = true + end + if banned then + entry.reason = "Banned in `players.iplist'" + entry.time = os.time() + entry.expires = nil + entry.source = "xban:importer_v1" + table.insert(entry.record, { + source = entry.source, + reason = entry.reason, + time = entry.time, + expires = nil, + }) + end + end + end + f:close() + return true +end -- cgit v1.2.3