Skip to content

Commit a96fef7

Browse files
committed
Update 1.2.3
1 parent 7dee17a commit a96fef7

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ org.gradle.parallel=true
33
org.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
77
foxloader.lastReIndevTransformerChanges=1.2.1
88

99
# ReIndev properties

server/src/main/java/com/fox2code/foxloader/server/mixins/MixinMinecraftServer.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
@Mixin(MinecraftServer.class)
1616
public 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(

0 commit comments

Comments
 (0)