Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ function Timers:CreateTimer(name, args, context)
args = {endTime = name, callback = args}
name = DoUniqueString("timer")
end
if nil == args then error("Timer function is nil") end
if not args.callback then
print("Invalid timer created: "..name)
return
Expand Down Expand Up @@ -248,4 +249,4 @@ end

if not Timers.timers then Timers:start() end

GameRules.Timers = Timers
GameRules.Timers = Timers