[MIRROR] Some more tweaks to Geis (#2487)

fixes clockcult conversion being :b:roken, as well as some geis tweaks that you won't care about
This commit is contained in:
CitadelStationBot
2017-08-27 03:36:17 -05:00
committed by kevinz000
parent 3557e0e9b1
commit 4c4bd22578
7 changed files with 107 additions and 67 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
play_attack_sound(damage_amount, damage_type, damage_flag)
if(!(resistance_flags & INDESTRUCTIBLE) && obj_integrity > 0)
damage_amount = run_obj_armor(damage_amount, damage_type, damage_flag, attack_dir)
if(damage_amount >= 1)
if(damage_amount >= 0.1)
. = damage_amount
obj_integrity = max(obj_integrity - damage_amount, 0)
if(obj_integrity <= 0)