Fixes blood magic applying wounds when casted (#73170)

Fixes cult blood magic applying wounds to the users hand when casted
This commit is contained in:
SuperSlayer
2023-02-03 19:10:01 -06:00
committed by GitHub
parent 374f7c5652
commit 1dcf29ed1d
+2 -2
View File
@@ -379,9 +379,9 @@
user.whisper(invocation, language = /datum/language/common)
if(health_cost)
if(user.active_hand_index == 1)
user.apply_damage(health_cost, BRUTE, BODY_ZONE_L_ARM)
user.apply_damage(health_cost, BRUTE, BODY_ZONE_L_ARM, wound_bonus = CANT_WOUND)
else
user.apply_damage(health_cost, BRUTE, BODY_ZONE_R_ARM)
user.apply_damage(health_cost, BRUTE, BODY_ZONE_R_ARM, wound_bonus = CANT_WOUND)
if(uses <= 0)
qdel(src)
else if(source)