From 017b83d3759edb32c72cd408bb64112cc642520c Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 13 Jan 2019 14:20:25 -0500 Subject: [PATCH] push time --- core/src/io/anuke/mindustry/type/ItemStack.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/io/anuke/mindustry/type/ItemStack.java b/core/src/io/anuke/mindustry/type/ItemStack.java index 663f98617f..d7455c8d36 100644 --- a/core/src/io/anuke/mindustry/type/ItemStack.java +++ b/core/src/io/anuke/mindustry/type/ItemStack.java @@ -1,10 +1,10 @@ package io.anuke.mindustry.type; public class ItemStack{ - public io.anuke.mindustry.type.Item item; + public Item item; public int amount; - public ItemStack(io.anuke.mindustry.type.Item item, int amount){ + public ItemStack(Item item, int amount){ this.item = item; this.amount = amount; }