Skip to content

Commit

Permalink
Fix: mobile FloatTable's size is incorrect.
Browse files Browse the repository at this point in the history
  • Loading branch information
MinRi2 committed Jul 14, 2024
1 parent e084d03 commit 3db2255
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ext{
//the build number that this mod is made for
mindustryVersion = 'v146'
mindustryXVersion = 'ca40f700fb'
minModCoreVersion = '9236ba700e'
minModCoreVersion = 'be3f9ab50e'
uncVersion = '3397fc68eb'

//windows sucks
Expand Down
4 changes: 2 additions & 2 deletions src/MinerTools/MinerTools.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public MinerTools(){
// mobile = true; // Only for debug
Events.on(ContentInitEvent.class, e -> MContents.init());

Events.on(ClientLoadEvent.class, e -> {
Events.on(ClientLoadEvent.class, e -> Core.app.post(() -> {
new ModUpdater(MinerVars.modName).checkUpdate();

MinerVars.init();
Expand All @@ -34,7 +34,7 @@ public MinerTools(){
MRenderer.init();

Modules.load();
});
}));

Events.run(Trigger.update, this::update);
}
Expand Down

0 comments on commit 3db2255

Please sign in to comment.