public bool addMisc(Misc m) { if(m.getWeight() + weight > weightLimit) { return false; } else { miscs.Add(m); weight += m.getWeight(); return true; } }