Fix nothing saving

This commit is contained in:
rubenwardy 2018-01-03 00:23:21 +00:00
parent d66cabe446
commit ee460930b1

View file

@ -1 +1,5 @@
ctf.save = function() end
ctf.save = function()
for i = 1, #ctf.registered_on_save do
local res = ctf.registered_on_save[i]()
end
end