fixes block uptime being 33% instead of 50% (#25917)

* matt I'm shooting you (not really but)

* also these ones

* fixes cqc
This commit is contained in:
Qwertytoforty
2024-06-20 11:38:30 +00:00
committed by GitHub
parent faab99d45b
commit c7d6e83d7e
8 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -73,7 +73,7 @@
/datum/component/parry/proc/start_parry(mob/living/L)
SIGNAL_HANDLER
var/time_since_parry = world.time - time_parried
if(time_since_parry < parry_cooldown + parry_time_out_time) // stops spam
if(time_since_parry < parry_cooldown) // stops spam
return
time_parried = world.time