Fixed crafting watchers not having the right type

This commit is contained in:
thatsIch
2014-09-28 22:45:57 +02:00
parent f1ffbf08a2
commit 56757bd828
3 changed files with 8 additions and 10 deletions
@@ -49,17 +49,17 @@ public class CraftingWatcher implements ICraftingWatcher
}
CraftingGridCache gsc;
ICraftingWatcherHost myObject;
ICraftingWatcherHost host;
HashSet<IAEStack> myInterests = new HashSet<IAEStack>();
public CraftingWatcher(CraftingGridCache cache, ICraftingWatcherHost host) {
gsc = cache;
myObject = host;
this.host = host;
}
public ICraftingWatcherHost getHost()
{
return myObject;
return host;
}
@Override