Lang file newline fixes.
This commit is contained in:
parent
a7a3ffac25
commit
16ac3b3a70
12 changed files with 75 additions and 38 deletions
|
@ -4,4 +4,4 @@ org.gradle.jvmargs=-Xmx8G
|
|||
version_minecraft=1.12.2
|
||||
version_forge=14.23.5.2768
|
||||
version_jei=4.10.0.198
|
||||
version_engineersdecor=1.0.17-b3
|
||||
version_engineersdecor=1.0.17
|
||||
|
|
|
@ -10,6 +10,16 @@ Mod sources for Minecraft version 1.12.2.
|
|||
----
|
||||
## Version history
|
||||
|
||||
-------------------------------------------------------------------
|
||||
~ v1.0.17 [R] Release based on v1.0.17-b3. Release-to-release changes:
|
||||
* Milking machine added.
|
||||
* Reverse recipes for slab slices added.
|
||||
* Texture and model improvements.
|
||||
* Lang file updates.
|
||||
* Minor bug fixes.
|
||||
-------------------------------------------------------------------
|
||||
[M] Updated zh_cn lang file (scikirbypoke).
|
||||
|
||||
- v1.0.17-b3 [F] Fixed Small Block Breaker facings to the horizontal range (issue #70, thx JimMiningWorm).
|
||||
|
||||
- v1.0.17-b2 [A] Reverse recipes for slabs and slab slices added.
|
||||
|
|
|
@ -262,11 +262,11 @@ public class BlockDecorPlacer extends BlockDecorDirected
|
|||
}
|
||||
// player slots
|
||||
for(int x=0; x<9; ++x) {
|
||||
addSlotToContainer(new Slot(playerInventory, x, 8+x*18, 129)); // player slots: 0..8
|
||||
addSlotToContainer(new Slot(playerInventory, x, 9+x*18, 129)); // player slots: 0..8
|
||||
}
|
||||
for(int y=0; y<3; ++y) {
|
||||
for(int x=0; x<9; ++x) {
|
||||
addSlotToContainer(new Slot(playerInventory, x+y*9+9, 8+x*18, 71+y*18)); // player slots: 9..35
|
||||
addSlotToContainer(new Slot(playerInventory, x+y*9+9, 9+x*18, 71+y*18)); // player slots: 9..35
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue