add comments

This commit is contained in:
RedSparr0w
2019-10-21 12:37:01 +13:00
parent 861d24c8a5
commit 15dd899096
3 changed files with 3 additions and 5 deletions
@@ -42,6 +42,6 @@ public class BuryBones implements Strategy {
private boolean hasBones(){
// Make sure we have bones
return Inventory.getItem(527) != null;
return Inventory.getItem(527) != null; // TODO: need to add the other bones too
}
}
@@ -50,7 +50,7 @@ public class PickupItems implements Strategy {
int[] itemIDs = new int[]{};
if (Variables.skill_to_train == Skill.ATTACK){
if (Variables.fighting_bury_bones)
itemIDs = new int[]{526};
itemIDs = new int[]{526}; // TODO: need to add all the other bones
}
itemIDs = Methods.combineIntArrays(Variables.fighting_item_ids, itemIDs);
return GroundItems.getNearest(itemIDs);