mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-08-10 17:55:44 +00:00
shitboner
This commit is contained in:
parent
7fdd48f29f
commit
c06957824e
@ -200,7 +200,7 @@ public class StackCache {
|
||||
long identity = Item.getIdFromItem(item) * 27644437;
|
||||
identity += meta;
|
||||
identity *= 27644437;
|
||||
if(nbt != null) identity += nbt.toString().hashCode();
|
||||
if(nbt != null) identity += nbt.hashCode();
|
||||
return identity;
|
||||
}
|
||||
}
|
||||
|
||||
@ -36,11 +36,11 @@ public class ContainerPneumoStorageMono extends ContainerBase {
|
||||
if(index < 0 || index >= 3) {
|
||||
return super.slotClick(index, button, mode, player);
|
||||
}
|
||||
|
||||
TileEntityPneumoStorageMono mono = (TileEntityPneumoStorageMono) this.tile;
|
||||
if(mono.amounts[index] > 0) return null;
|
||||
|
||||
|
||||
Slot slot = this.getSlot(index);
|
||||
TileEntityPneumoStorageMono mono = (TileEntityPneumoStorageMono) this.tile;
|
||||
if(mono.amounts[index] > 0 && slot.getHasStack()) return null;
|
||||
|
||||
ItemStack ret = null;
|
||||
ItemStack held = player.inventory.getItemStack();
|
||||
|
||||
3229
src/main/resources/assets/hbm/models/machines/supercomputer.obj
Normal file
3229
src/main/resources/assets/hbm/models/machines/supercomputer.obj
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
After Width: | Height: | Size: 2.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 113 B |
Loading…
x
Reference in New Issue
Block a user