Update cooldowns.dm

This commit is contained in:
Fabian
2021-03-15 14:30:10 +01:00
parent 7e50d878ca
commit 54611bb04a
-2
View File
@@ -65,8 +65,6 @@
#define COOLDOWN_START(cd_source, cd_index, cd_time) (cd_source.cd_index = world.time + cd_time)
#define COOLDOWN_CHECK(cd_source, cd_index) (cd_source.cd_index < world.time)
//Returns true if the cooldown has run its course, false otherwise
#define COOLDOWN_FINISHED(cd_source, cd_index) (cd_source.cd_index < world.time)