Skip to content

Commit

Permalink
Fixes Homing Instinct not correctly going back to a minimum (#1542)
Browse files Browse the repository at this point in the history
* Update he.dm

* Update he.dm
  • Loading branch information
Kitsunemitsu authored Oct 28, 2023
1 parent 5e077fc commit 0c8ffaf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/game/objects/items/ego_weapons/he.dm
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,8 @@

/obj/item/ego_weapon/homing_instinct/attack(mob/living/M, mob/living/carbon/human/user)
..()
force = round(force/2) //It doesn't lose all its force in one go after each hit.
force = max(initial(force), round(force/2)) //It doesn't lose all its force in one go after each hit.


/obj/item/ego_weapon/homing_instinct/proc/UserMoved()
SIGNAL_HANDLER
Expand Down

0 comments on commit 0c8ffaf

Please sign in to comment.