summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2017-09-14 17:13:16 +0200
committerAki <nthirtyone@gmail.com>2017-09-14 17:13:16 +0200
commit2a65a119ef6cb8f99f7f5580439b0b63dcd85a69 (patch)
tree5f6b870c9cb3cfd0bc3a80a99d1428c97e647db9
parent0e9ad14e9fcee242a68f695715fa106af99aa76f (diff)
downloadroflnauts-2a65a119ef6cb8f99f7f5580439b0b63dcd85a69.zip
roflnauts-2a65a119ef6cb8f99f7f5580439b0b63dcd85a69.tar.gz
roflnauts-2a65a119ef6cb8f99f7f5580439b0b63dcd85a69.tar.bz2
Added missing super constructor
-rw-r--r--not/Timer.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/not/Timer.lua b/not/Timer.lua
index 6fc4a4c..9ae0de8 100644
--- a/not/Timer.lua
+++ b/not/Timer.lua
@@ -1,6 +1,7 @@
Timer = require "not.Trigger":extends()
function Timer:new (delay)
+ Timer.__super.new(self)
self.delay = delay
self.left = 0
self.active = false