mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user