Fixed Crafting Tweaks buttons being in the wrong position after changing the size configuration of the Grid. Fixes #2348
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
- Fixed crash with Forge version 67 (Darkere)
|
||||
- Fixed cases where Refined Storage unwillingly acts like a chunkloader (raoulvdberge)
|
||||
- Fixed Network Transmitters being able to connect to any network device (raoulvdberge)
|
||||
- Fixed Crafting Tweaks buttons being in the wrong position after changing the size configuration of the Grid (raoulvdberge)
|
||||
- Networks that are in a chunk that isn't loaded will no longer work, they will turn off. Chunkload the Controller to maintain a functioning network over long distances (Darkere/raoulvdberge)
|
||||
- Re-added interdimensional networks with the Network Transmitter and Network Receiver (raoulvdberge)
|
||||
- Re-added MouseTweaks integration (raoulvdberge)
|
||||
|
@@ -56,7 +56,7 @@ public class GridTile extends NetworkNodeTile<GridNetworkNode> {
|
||||
t.getNode().setSize(v);
|
||||
t.getNode().markDirty();
|
||||
}
|
||||
}, (initial, p) -> BaseScreen.executeLater(GridScreen.class, BaseScreen::init));
|
||||
}, (initial, p) -> BaseScreen.executeLater(GridScreen.class, (screen) -> screen.resize(screen.getMinecraft(), screen.width, screen.height)));
|
||||
public static final TileDataParameter<Integer, GridTile> TAB_SELECTED = new TileDataParameter<>(DataSerializers.VARINT, 0, t -> t.getNode().getTabSelected(), (t, v) -> {
|
||||
t.getNode().setTabSelected(v == t.getNode().getTabSelected() ? -1 : v);
|
||||
t.getNode().markDirty();
|
||||
|
Reference in New Issue
Block a user