Temporarily removed world.isRemote() check to fix crafter sync issue.

This commit is contained in:
Tntrololol 2015-05-11 17:26:26 -05:00
parent 1bddb1747f
commit 0818405215

View file

@ -85,9 +85,9 @@ public class RecipeCrafter {
* Call this on the tile tick
*/
public void updateEntity() {
if (parentTile.getWorldObj().isRemote) {
/*if (parentTile.getWorldObj().isRemote) {
return;
}
}*/
if (currentRecipe == null) {
for (IBaseRecipeType recipe : RecipeHanderer.getRecipeClassFromName(recipeName)) {
boolean isFullRecipe = false;