Merge pull request #8867 from Seris02/augmentfix

fixes augment implants so you can't spam the fuck out of them
This commit is contained in:
Atermonera
2023-01-02 16:06:55 -08:00
committed by VirgoBot
parent 6d481f7b93
commit 852fc9f7dd
3 changed files with 7 additions and 7 deletions
@@ -135,8 +135,8 @@
return
if(aug_cooldown)
if(last_activate <= world.time + aug_cooldown)
last_activate = world.time
if(cooldown <= world.time)
cooldown = world.time + aug_cooldown
else
return
+2 -2
View File
@@ -93,8 +93,8 @@
return
if(aug_cooldown)
if(last_activate <= world.time + aug_cooldown)
last_activate = world.time
if(cooldown <= world.time)
cooldown = world.time + aug_cooldown
else
return