Skip to content

Commit

Permalink
removes unused movespeed stuff
Browse files Browse the repository at this point in the history
whoopsies
  • Loading branch information
Sun-Soaked committed Mar 9, 2024
1 parent 1e62a75 commit c2666fe
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
5 changes: 0 additions & 5 deletions code/datums/wires/mines.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@
holder.visible_message(span_notice("[icon2html(ourmine, viewers(holder))] You hear something inside \the [ourmine] click softly."))
playsound(ourmine, 'sound/weapons/empty.ogg', 30, TRUE)
ourmine.clicked = FALSE
var/mob/living/defuser = ourmine.foot_on_mine.resolve()
defuser.remove_movespeed_modifier(/datum/movespeed_modifier/stepped_on_mine)
ourmine.foot_on_mine = null
else
holder.visible_message(span_notice("[icon2html(ourmine, viewers(holder))] \The [ourmine]'s detonation pad shifts slightly. Nothing happens."))
if(WIRE_RESET)//Disarms the mine, allowing it to be picked up. Major success.
Expand Down Expand Up @@ -66,8 +63,6 @@
holder.visible_message(span_notice("[icon2html(ourmine, viewers(holder))] You hear something inside \the [ourmine] shift out of place."))
playsound(ourmine, 'sound/weapons/empty.ogg', 30, TRUE)
ourmine.clicked = FALSE
var/mob/living/defuser = ourmine.foot_on_mine.resolve()
defuser.remove_movespeed_modifier(/datum/movespeed_modifier/stepped_on_mine)
else
holder.visible_message(span_notice("[icon2html(ourmine, viewers(holder))] \The [ourmine]'s detonation pad goes loose."))
ourmine.foot_on_mine = null
Expand Down
4 changes: 0 additions & 4 deletions code/modules/movespeed/modifiers/items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,3 @@
/datum/movespeed_modifier/berserk
multiplicative_slowdown = -0.2

/datum/movespeed_modifier/stepped_on_mine
multiplicative_slowdown = 5
movetypes = ALL
flags = IGNORE_NOSLOW

0 comments on commit c2666fe

Please sign in to comment.