mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-04 00:31:54 +00:00
Some quick patches (#398)
- 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) Co-authored-by: Daniel Ginovker <dcress01@uoguelph.ca>
This commit is contained in:
@@ -120,7 +120,6 @@ public abstract class Player {
|
||||
private final Queue<Packet> queuedPackets = new LinkedList<Packet>();
|
||||
private final Potions potions = new Potions(this);
|
||||
private final PotionMixing potionMixing = new PotionMixing(this);
|
||||
private final Food food = new Food(this);
|
||||
private final EmoteHandler emoteHandler = new EmoteHandler(this);
|
||||
private final SkillInterfaces skillInterfaces = new SkillInterfaces(this);
|
||||
private final Enchanting enchanting = new Enchanting(this);
|
||||
@@ -434,11 +433,6 @@ public abstract class Player {
|
||||
return potionMixing;
|
||||
}
|
||||
|
||||
public Food getFood() {
|
||||
return food;
|
||||
}
|
||||
|
||||
|
||||
public Inventory getInventory() {
|
||||
return inventory;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user