Cleanup
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
package io.anuke.mindustry.entities;
|
||||
|
||||
import io.anuke.mindustry.content.Items;
|
||||
import io.anuke.mindustry.entities.traits.Saveable;
|
||||
import io.anuke.mindustry.type.Item;
|
||||
import io.anuke.mindustry.type.ItemStack;
|
||||
@@ -13,7 +12,7 @@ import static io.anuke.mindustry.Vars.content;
|
||||
|
||||
public class UnitInventory implements Saveable{
|
||||
private final Unit unit;
|
||||
private ItemStack item = new ItemStack(Items.stone, 0);
|
||||
private ItemStack item = new ItemStack(content.item(0), 0);
|
||||
|
||||
public UnitInventory(Unit unit){
|
||||
this.unit = unit;
|
||||
|
||||
@@ -23,7 +23,7 @@ public class UnitDrops{
|
||||
}
|
||||
|
||||
if(dropTable == null){
|
||||
dropTable = new Item[]{Items.densealloy, Items.silicon, Items.lead, Items.copper};
|
||||
dropTable = new Item[]{Items.titanium, Items.silicon, Items.lead, Items.copper};
|
||||
}
|
||||
|
||||
for(int i = 0; i < 3; i++){
|
||||
|
||||
Reference in New Issue
Block a user