File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
server/src/main/java/com/fox2code/foxloader/server/mixins Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ org.gradle.parallel=true
33org.gradle.jvmargs=-Xmx1024m -XX:-UseGCOverheadLimit -Dfile.encoding=UTF-8
44
55# FoxLoader properties
6- foxloader.version=1.2.2
6+ foxloader.version=1.2.3
77foxloader.lastReIndevTransformerChanges=1.2.1
88
99# ReIndev properties
Original file line number Diff line number Diff line change 1414
1515@Mixin(MinecraftServer.class)
1616public class MixinMinecraftServer {
17- @Shadow public boolean onlineMode;
1817 @Shadow private static MinecraftServer theMinecraft;
1918 @Unique private boolean hasServerStarted;
2019
@@ -32,7 +31,6 @@ public void onRunTick(CallbackInfo ci) {
3231
3332 @Inject(method = "startServer", at = @At("RETURN"))
3433 public void onStartServer(CallbackInfoReturnable<Boolean> cir) {
35- this.onlineMode = false;
3634 if (cir.getReturnValue() == Boolean.TRUE) {
3735 this.hasServerStarted = true;
3836 ModLoader.Internal.notifyOnServerStart(
You can’t perform that action at this time.
0 commit comments