Fixed fishing rod duping with poly belts and shapeshift spells. (#87706)

## About The Pull Request
It turns out the "shapeshifted from spell" status ejects everything
inside the shapeshifted mob when removed. That's been causing a little
issue with the fishing rod from the profound_fisher component, which a
few mobs have. This PR fixes just that.

## Why It's Good For The Game

![immagine](https://github.com/user-attachments/assets/b664ffa6-567f-4332-b7dc-a5d2badb43d3)

![immagine](https://github.com/user-attachments/assets/4c453f91-2852-40c0-8f54-c5d66f28fdb1)


## Changelog

🆑
fix: Fixed fishing rod duping with poly belts and shapeshift spells.
spellcheck: Fixed a small typo when examining fishing rods.
/🆑
This commit is contained in:
Ghom
2024-11-09 03:07:55 +00:00
committed by GitHub
parent 9d46482f2f
commit dfb5d07b88
4 changed files with 25 additions and 10 deletions
+1 -1
View File
@@ -985,7 +985,7 @@
return
gloves.AddComponent(/datum/component/adjust_fishing_difficulty, 5)
if(equipped)
gloves.AddComponent(/datum/component/profound_fisher, equipped)
gloves.AddComponent(/datum/component/profound_fisher, equipped, delete_rod_when_deleted = FALSE)
/obj/item/mod/module/fishing_glove/on_part_deactivation(deleting = FALSE)
var/obj/item/gloves = mod.get_part_from_slot(ITEM_SLOT_GLOVES)