[Bug][Item] Items can be transfered from 6th item slot again. (#6357)

* Added check for transferMode
This commit is contained in:
Wlowscha 2025-08-23 16:43:33 +02:00 committed by GitHub
parent 961d30f75e
commit e752e7a93d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -563,7 +563,7 @@ export class PartyUiHandler extends MessageUiHandler {
const ui = this.getUi(); const ui = this.getUi();
const option = this.options[this.optionsCursor]; const option = this.options[this.optionsCursor];
if (option === PartyOption.TRANSFER) { if (this.transferMode && option === PartyOption.TRANSFER) {
return this.processTransferOption(); return this.processTransferOption();
} }