Skip to content

Commit

Permalink
Resin wall dmg fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CheBokJam committed Dec 9, 2024
1 parent 8abba26 commit 9dcdcd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/turfs/walls/resin.dm
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
user.changeNext_move(plasmacutter.attack_speed)
user.do_attack_animation(src, used_item = plasmacutter)
plasmacutter.cut_apart(user, name, src, charge_cost)
take_damage(max(0, plasmacutter.force * (1 + PLASMACUTTER_RESIN_MULTIPLIER)), plasmacutter.damtype, MELEE)
take_damage(max(0, plasmacutter.force * (2 + PLASMACUTTER_RESIN_MULTIPLIER)), plasmacutter.damtype, MELEE)
playsound(src, "alien_resin_break", 25)
return TRUE

Expand Down

0 comments on commit 9dcdcd4

Please sign in to comment.