Skip to content

Commit

Permalink
Fixes matches doing brute instead of burn when accidently burning you…
Browse files Browse the repository at this point in the history
…rself
  • Loading branch information
Contrabang committed Dec 18, 2023
1 parent 86b8b5d commit def3e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/items/storage/fancy.dm
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@
if(istype(W) && !W.heat_source && !W.burnt)
if(prob(burn_chance))
to_chat(user, SPAN_WARNING("\The [W] lights, but you burn your hand in the process! Ouch!"))
user.apply_damage(3, BRUTE, pick("r_hand", "l_hand"))
user.apply_damage(3, BURN, pick("r_hand", "l_hand"))
if((user.pain.feels_pain) && prob(25))
user.emote("scream")
W.light_match()
Expand Down

0 comments on commit def3e7e

Please sign in to comment.