Remove unnecessary logging

master
rubenwardy 2015-09-08 14:08:51 +01:00
parent b8b6ff76e7
commit 59a3d275bc
2 changed files with 0 additions and 4 deletions

View File

@ -91,7 +91,6 @@ function ctf.new_player(name)
ctf.error("team", "Can't create a blank player")
ctf.log("team", debug.traceback())
end
ctf.log("team", "Creating player " .. name)
ctf.players[name] = {
name = name
}
@ -241,8 +240,6 @@ end
-- Automatic Allocation
function ctf.autoalloc(name, alloc_mode)
ctf.log("autoalloc", "Getting autoallocation for " .. name)
if alloc_mode == 0 then
return
end

View File

@ -70,7 +70,6 @@ function ctf_flag.register_on_pick_up(func)
end
function ctf_flag.collect_claimed()
ctf.log("flag", "Collecting claimed locations")
local claimed = {}
for _, team in pairs(ctf.teams) do
for i = 1, #team.flags do