[GH-ISSUE #156] Trading issue "Other player is busy at the moment" #68

Closed
opened 2026-05-15 02:56:01 +00:00 by Dark98 · 1 comment
Owner

Originally created by @Gptaqbc on GitHub (Nov 10, 2019).
Original GitHub issue: https://github.com/2006-Scape/2006Scape/issues/156

The message "Other player is busy at the moment" shows in chat when trying to trade a player in some context. I think if a player traded someone, the player can't trade another player because there is a var that isn't set properly after the initial trade.

Originally created by @Gptaqbc on GitHub (Nov 10, 2019). Original GitHub issue: https://github.com/2006-Scape/2006Scape/issues/156 The message "Other player is busy at the moment" shows in chat when trying to trade a player in some context. I think if a player traded someone, the player can't trade another player because there is a var that isn't set properly after the initial trade.
Author
Owner

@Gptaqbc commented on GitHub (Nov 15, 2019):

Changing this line(65) in Trading.java:

} else if (player.playerIsBusy() == false && o.playerIsBusy() == true) {

for this one:

} else if (player.playerIsBusy() == true || o.playerIsBusy() == true) {

Should fix the issue. Gotta try it to know if it works correctly though.

<!-- gh-comment-id:554423631 --> @Gptaqbc commented on GitHub (Nov 15, 2019): Changing this line(65) in Trading.java: > } else if (player.playerIsBusy() == false && o.playerIsBusy() == true) { for this one: > } else if (player.playerIsBusy() == true || o.playerIsBusy() == true) { Should fix the issue. Gotta try it to know if it works correctly though.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: 2006-Scape/2006Scape#68