[PR #398] [MERGED] Some quick patches #12125

Open
opened 2026-06-05 12:21:59 +00:00 by Dark98 · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/2006-Scape/2006Scape/pull/398
Author: @mrextremez
Created: 3/13/2020
Status: Merged
Merged: 3/14/2020
Merged by: @dginovker

Base: masterHead: quickpatches


📝 Commits (2)

  • 473719f Some quick patches
  • 429ac13 Merge branch 'master' into quickpatches

📊 Changes

19 files changed (+221 additions, -218 deletions)

View changed files

📝 2006Redone Server/data/logs/commands/andrew5.txt (+6 -0)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/consumables/Food.java (+133 -147)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/music/sound/CombatSounds.java (+1 -1)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/skills/thieving/Pickpocket.java (+1 -1)
📝 2006Redone Server/src/main/java/com/rebotted/game/content/skills/thieving/Stalls.java (+1 -1)
📝 2006Redone Server/src/main/java/com/rebotted/game/dialogues/DialogueHandler.java (+1 -2)
📝 2006Redone Server/src/main/java/com/rebotted/game/items/Inventory.java (+2 -2)
📝 2006Redone Server/src/main/java/com/rebotted/game/items/Item.java (+1 -1)
📝 2006Redone Server/src/main/java/com/rebotted/game/items/ItemAssistant.java (+38 -35)
📝 2006Redone Server/src/main/java/com/rebotted/game/items/ItemData.java (+7 -2)
📝 2006Redone Server/src/main/java/com/rebotted/game/npcs/drops/NPCDropsHandler.java (+1 -1)
📝 2006Redone Server/src/main/java/com/rebotted/game/objects/impl/OtherObjects.java (+1 -1)
📝 2006Redone Server/src/main/java/com/rebotted/game/objects/impl/Pickable.java (+10 -2)
📝 2006Redone Server/src/main/java/com/rebotted/game/players/Player.java (+0 -6)
📝 2006Redone Server/src/main/java/com/rebotted/net/packets/impl/BankAll.java (+2 -2)
📝 2006Redone Server/src/main/java/com/rebotted/net/packets/impl/ClickItem.java (+3 -2)
📝 2006Redone Server/src/main/java/com/rebotted/net/packets/impl/InterfaceX.java (+8 -6)
📝 2006Redone Server/src/main/java/com/rebotted/world/Boundary.java (+0 -1)
📝 2006Redone Server/src/main/java/com/rebotted/world/ItemHandler.java (+5 -5)

📄 Description

  • Bank all should now work for all items again
  • Fixed Al Kharid gate not functioning
  • Added unique cabbage pickable for Falador
  • Fixed desert disguise wrongly being noted
  • Reformatted some of the food code

Closes #397
Closes #395

(I also included @Qweqker changes so that will fix Lumbridge bank boundary and adds his new cabbage effect)


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/2006-Scape/2006Scape/pull/398 **Author:** [@mrextremez](https://github.com/mrextremez) **Created:** 3/13/2020 **Status:** ✅ Merged **Merged:** 3/14/2020 **Merged by:** [@dginovker](https://github.com/dginovker) **Base:** `master` ← **Head:** `quickpatches` --- ### 📝 Commits (2) - [`473719f`](https://github.com/2006-Scape/2006Scape/commit/473719f3dd34f5a7d3b547b41f5a716a124f992a) Some quick patches - [`429ac13`](https://github.com/2006-Scape/2006Scape/commit/429ac1393fae7b51b3c44b7709115805a763b3b2) Merge branch 'master' into quickpatches ### 📊 Changes **19 files changed** (+221 additions, -218 deletions) <details> <summary>View changed files</summary> 📝 `2006Redone Server/data/logs/commands/andrew5.txt` (+6 -0) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/consumables/Food.java` (+133 -147) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/music/sound/CombatSounds.java` (+1 -1) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/skills/thieving/Pickpocket.java` (+1 -1) 📝 `2006Redone Server/src/main/java/com/rebotted/game/content/skills/thieving/Stalls.java` (+1 -1) 📝 `2006Redone Server/src/main/java/com/rebotted/game/dialogues/DialogueHandler.java` (+1 -2) 📝 `2006Redone Server/src/main/java/com/rebotted/game/items/Inventory.java` (+2 -2) 📝 `2006Redone Server/src/main/java/com/rebotted/game/items/Item.java` (+1 -1) 📝 `2006Redone Server/src/main/java/com/rebotted/game/items/ItemAssistant.java` (+38 -35) 📝 `2006Redone Server/src/main/java/com/rebotted/game/items/ItemData.java` (+7 -2) 📝 `2006Redone Server/src/main/java/com/rebotted/game/npcs/drops/NPCDropsHandler.java` (+1 -1) 📝 `2006Redone Server/src/main/java/com/rebotted/game/objects/impl/OtherObjects.java` (+1 -1) 📝 `2006Redone Server/src/main/java/com/rebotted/game/objects/impl/Pickable.java` (+10 -2) 📝 `2006Redone Server/src/main/java/com/rebotted/game/players/Player.java` (+0 -6) 📝 `2006Redone Server/src/main/java/com/rebotted/net/packets/impl/BankAll.java` (+2 -2) 📝 `2006Redone Server/src/main/java/com/rebotted/net/packets/impl/ClickItem.java` (+3 -2) 📝 `2006Redone Server/src/main/java/com/rebotted/net/packets/impl/InterfaceX.java` (+8 -6) 📝 `2006Redone Server/src/main/java/com/rebotted/world/Boundary.java` (+0 -1) 📝 `2006Redone Server/src/main/java/com/rebotted/world/ItemHandler.java` (+5 -5) </details> ### 📄 Description - Bank all should now work for all items again - Fixed Al Kharid gate not functioning - Added unique cabbage pickable for Falador - Fixed desert disguise wrongly being noted - Reformatted some of the food code Closes #397 Closes #395 (I also included @Qweqker changes so that will fix Lumbridge bank boundary and adds his new cabbage effect) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Dark98 added the pull-request label 2026-06-05 12:21:59 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: 2006-Scape/2006Scape#12125