Hopefully fixes the recurring GAGS annoyance. (#4895)

## About The Pull Request

Stops the annoying gags bug we get once in a while. Non modular, I
woulda submitted it to TG but they don't have any GAGS items that use
transformations so it'd be pointless.

Code entirely stolen from
https://github.com/MrMelbert/MapleStationCode/pull/827 .

## Why It's Good For The Game

Things work good.

## Proof Of Testing

it work

</details>

## Changelog
🆑
add: Added a previously unobtainable Parasol to the Clothesmate.
code: PRs should hopefully stop chinwagging about map icons now.
/🆑
This commit is contained in:
Cursor
2025-11-11 18:02:44 +02:00
committed by GitHub
parent 605652b81c
commit 5bce2d79c5
3 changed files with 8 additions and 3 deletions
+4 -1
View File
@@ -243,7 +243,10 @@
source.hitsound = initial(source.hitsound)
source.update_weight_class(initial(source.w_class))
source.icon_state = initial(source.icon_state)
if(source.post_init_icon_state) // BUBBER CHANGE START : Bug Fix.
source.icon_state = initial(source.post_init_icon_state)
else
source.icon_state = initial(source.icon_state) // BUBBER CHANGE END
source.inhand_icon_state = initial(source.inhand_icon_state)
source.update_appearance()
source.update_inhand_icon()