Remove duplicate code between first & take

This commit is contained in:
Patrick 'Quezler' Mounier 2020-01-28 11:08:40 +01:00
parent 89d143af8f
commit 61197fe974
No known key found for this signature in database
GPG Key ID: 0D6CA7326C76D8EA

View File

@ -74,14 +74,14 @@ public class ItemModule extends BlockModule{
}
public Item take(){
for(int i = 0; i < items.length; i++){
if(items[i] > 0){
items[i]--;
total--;
return content.item(i);
}
Item took = first();
if(took != null){
items[first().id]--;
total--;
}
return null;
return took;
}
public int get(Item item){