Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/dungeon_serializer.c
Original file line number Diff line number Diff line change
Expand Up @@ -738,6 +738,11 @@ void ReadDungeonState(u8 *buffer, u32 bufLen)
ReadDungeonFloor(&seri);
ReadDungeonVisibility(&seri);
ReadDungeonMusic(&seri);
//BUG: KECLEON INFINITE MONEY GLITCH. Upon loading a quicksave, the game erroneously re-adds the total value of the items you're planning to sell in Kecleon's shop in ReadDungeonItems,
//which makes Kecleon give the player money whenever the player leaves the shop. Full explaination here: https://github.com/jtjanecek/rogue-rescue-team/issues/4
#ifdef BUGFIX
gDungeon->unk644.unk4C = 0; //Proof that unk4C is the correct variable: https://github.com/pret/pmd-red/blob/master/src/dungeon_items.c#L316
#endif
ReadDungeonItems(&seri);
ReadDungeonTraps(&seri);
ReadDungeonMonsters(&seri);
Expand Down