util.helpers: It would be a good idea to fire an event when we say we are
authorMatthew Wild <mwild1@gmail.com>
Sun, 20 Sep 2009 03:20:38 +0100
changeset 1795 0e933d6f2c31
parent 1794 218f720af304
child 1797 a3b0f21c4e37
util.helpers: It would be a good idea to fire an event when we say we are
util/helpers.lua
--- a/util/helpers.lua	Sat Sep 19 17:48:15 2009 +0100
+++ b/util/helpers.lua	Sun Sep 20 03:20:38 2009 +0100
@@ -14,6 +14,7 @@
 	name = name or tostring(events);
 	function events.fire_event(event, ...)
 		logger("debug", "%s firing event: %s", name, event);
+		return f(event, ...);
 	end
 	events[events.fire_event] = f;
 	return events;