Err too much.

This commit is contained in:
AlgorithmX2
2014-01-20 10:41:37 -06:00
parent 5652ec30ec
commit 834e9c04c5
159 changed files with 7953 additions and 1541 deletions
+7 -7
View File
@@ -71,7 +71,7 @@ public class AdaptorIInventory extends InventoryAdaptor
if ( rv != null )
{
i.onInventoryChanged();
// i.onInventoryChanged();
return rv;
}
}
@@ -150,8 +150,8 @@ public class AdaptorIInventory extends InventoryAdaptor
}
}
if ( rv != null )
i.onInventoryChanged();
// if ( rv != null )
// i.onInventoryChanged();
return rv;
}
@@ -226,7 +226,7 @@ public class AdaptorIInventory extends InventoryAdaptor
if ( left.stackSize <= 0 )
{
i.onInventoryChanged();
// i.onInventoryChanged();
return null;
}
}
@@ -247,7 +247,7 @@ public class AdaptorIInventory extends InventoryAdaptor
left.stackSize -= used;
if ( left.stackSize <= 0 )
{
i.onInventoryChanged();
// i.onInventoryChanged();
return null;
}
}
@@ -257,8 +257,8 @@ public class AdaptorIInventory extends InventoryAdaptor
}
}
if ( left.stackSize != A.stackSize )
i.onInventoryChanged();
// if ( left.stackSize != A.stackSize )
// i.onInventoryChanged();
return left;
}