Fix uninteractable duel arena bank chests - #1184
Merged
Merged
Conversation
Object 27663 had no definition and its "Bank" option was unhandled, so interacting gave "Nothing interesting happens". Names the object bank_chest_duel_arena and handles the "Bank" option on bank_chest_*. The same id is also used by the three tournament area chests. Closes GregHib#1181
GregHib
approved these changes
Aug 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #1181
Problem
The Duel Arena bank chests are object id
27663(Bank chest, options[Bank, Examine]). Void had no definition for that id, andBanker.ktonly registered theUseoption onbank_chest_*, so interacting fell through to "Nothing interesting happens".Changes
bank_chest_duel_arena(id 27663) to a newdata/area/kharidian_desert/al_kharid/duel_arena/duel_arena.objs.toml. The same id is used by the two arena chests (3381,3269 / 3382,3270) and the three tournament area chests (3216,5093 / 3233,5108 / 3249,5085), so one definition covers all five.objectOperate("Bank", "bank_chest_*")inBanker.kt. A separate registration is needed because the option string is a handler key and isn't comma-split.DuelArenaBankTestcovering the arena chest opening the bank interface.Testing
./gradlew :game:test --tests "content.area.kharidian_desert.al_kharid.duel_arena.DuelArenaBankTest"passes.