mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-10-02 09:34:58 -04:00
Merge pull request #23 from repo-alt/master-MC1.7.10
AE itemstack size may be larger that int
This commit is contained in:
commit
2eed2f5573
@ -1,7 +1,7 @@
|
|||||||
minecraft.version=1.7.10
|
minecraft.version=1.7.10
|
||||||
forge.version=10.13.4.1614-1.7.10
|
forge.version=10.13.4.1614-1.7.10
|
||||||
|
|
||||||
oc.version=1.7.5.7-GTNH
|
oc.version=1.7.5.8-GTNH
|
||||||
|
|
||||||
ae2.version=rv2-beta-26
|
ae2.version=rv2-beta-26
|
||||||
bc.version=7.0.9
|
bc.version=7.0.9
|
||||||
|
@ -393,7 +393,7 @@ object NetworkControl {
|
|||||||
val hash = result(0)
|
val hash = result(0)
|
||||||
// it would have been nice to put these fields in a registry convert
|
// it would have been nice to put these fields in a registry convert
|
||||||
// but the potential ae item needs the tile and position data
|
// but the potential ae item needs the tile and position data
|
||||||
hash.update("size", Int.box(aeItem.getStackSize.toInt))
|
hash.update("size", Long.box(aeItem.getStackSize))
|
||||||
hash.update("isCraftable", Boolean.box(aeItem.isCraftable))
|
hash.update("isCraftable", Boolean.box(aeItem.isCraftable))
|
||||||
return hash
|
return hash
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user