Skip to content

Commit 871123a

Browse files
committed
Release Patch 1.0.2 for LoTAS 1.8.9 to 1.12.2
2 parents d6e3911 + 25c0772 commit 871123a

File tree

42 files changed

+67
-53
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+67
-53
lines changed

Fabric-1.14.4/libs/rLog.jar

74 Bytes
Binary file not shown.

Fabric-1.14.4/src/main/java/de/pfannekuchen/lotas/gui/SpawnManipulationScreen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public void init() {
7676
entities.put(3, "Enderman");
7777
entities.put(4, "Ghast");
7878
entities.put(5, "Husk");
79-
entities.put(6, "Iron Golem");
79+
entities.put(6, "Ghast");
8080
entities.put(7, "Magma Cube");
8181
entities.put(8, "Skeleton");
8282
entities.put(9, "Slime");

Forge-1.10.2/build.gradle

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ plugins {
1919
apply plugin: 'net.minecraftforge.gradle.forge'
2020
apply plugin: 'org.spongepowered.mixin'
2121

22-
version = "1.0.1"
22+
version = "1.0.2"
2323
group = "de.pfannekuchen.lotas"
2424
archivesBaseName = "lotas"
2525

@@ -45,7 +45,7 @@ minecraft {
4545
}
4646

4747
dependencies {
48-
implementation('org.spongepowered:mixin:0.7.10-SNAPSHOT') {
48+
compile('org.spongepowered:mixin:0.7.10-SNAPSHOT') {
4949
exclude module: 'launchwrapper'
5050
exclude module: 'guava'
5151
exclude module: 'gson'
@@ -54,9 +54,11 @@ dependencies {
5454
}
5555
implementation files ('libs/rLog.jar')
5656
implementation files ('libs/identifier_obfc.jar')
57-
implementation files ('libs/ffmpeg.jar')
58-
implementation 'org.msgpack:msgpack-core:0.8.16'
59-
implementation 'org.msgpack:jackson-dataformat-msgpack:0.8.16'
57+
implementation files ('libs/ffmpeg.jar')
58+
implementation 'com.google.code.gson:gson:2.4'
59+
60+
compile 'org.msgpack:msgpack-core:0.8.16'
61+
compile 'org.msgpack:jackson-dataformat-msgpack:0.8.16'
6062
}
6163
jar {
6264
manifest {

Forge-1.10.2/libs/rLog.jar

74 Bytes
Binary file not shown.

Forge-1.10.2/src/main/java/de/pfannekuchen/lotas/challenges/ChallengeLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ private static void extractFile(ZipInputStream zipIn, String filePath) throws IO
149149
private static void launchIntegratedServer(String folderName, String worldName, @Nullable WorldSettings worldSettingsIn) {
150150

151151
try {
152-
Field h = Minecraft.getMinecraft().getClass().getDeclaredField("saveLoader");
152+
Field h = Minecraft.getMinecraft().getClass().getDeclaredField("field_71469_aa");
153153
h.setAccessible(true);
154154
h.set(Minecraft.getMinecraft(), map.getSaveLoader());
155155
} catch (Exception e) {

Forge-1.10.2/src/main/java/de/pfannekuchen/lotas/gui/GuiChallengeEscape.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ protected void actionPerformed(GuiButton button) throws IOException {
8585

8686
ChallengeLoader.map = null;
8787
try {
88-
Field h = Minecraft.getMinecraft().getClass().getDeclaredField("saveLoader");
88+
Field h = Minecraft.getMinecraft().getClass().getDeclaredField("field_71469_aa");
8989
h.setAccessible(true);
9090
h.set(Minecraft.getMinecraft(), new AnvilSaveConverter(new File(mc.mcDataDir, "saves"), Minecraft.getMinecraft().getDataFixer()));
9191
} catch (Exception e) {

Forge-1.10.2/src/main/java/de/pfannekuchen/lotas/gui/GuiEntitySpawner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public void initGui() {
7474
entities.put(3, "Enderman");
7575
entities.put(4, "Ghast");
7676
entities.put(5, "Zombie");
77-
entities.put(6, "Iron Golem");
77+
entities.put(6, "Ghast");
7878
entities.put(7, "Magma Cube");
7979
entities.put(8, "Skeleton");
8080
entities.put(9, "Slime");

Forge-1.10.2/src/main/java/de/pfannekuchen/lotas/mixin/MixinEndPortal.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void injectHere(int dimensionIn, CallbackInfoReturnable<Entity> ci) {
4242
ChallengeLoader.map = null;
4343

4444
try {
45-
Field h = Minecraft.getMinecraft().getClass().getDeclaredField("saveLoader");
45+
Field h = Minecraft.getMinecraft().getClass().getDeclaredField("field_71469_aa");
4646
h.setAccessible(true);
4747
h.set(Minecraft.getMinecraft(), new AnvilSaveConverter(new File(Minecraft.getMinecraft().mcDataDir, "saves"), Minecraft.getMinecraft().getDataFixer()));
4848
} catch (Exception e) {

Forge-1.11.2/build.gradle

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ plugins {
1919
apply plugin: 'net.minecraftforge.gradle.forge'
2020
apply plugin: 'org.spongepowered.mixin'
2121

22-
version = "1.0.1"
22+
version = "1.0.2"
2323
group = "de.pfannekuchen.lotas"
2424
archivesBaseName = "lotas"
2525

@@ -45,7 +45,7 @@ minecraft {
4545
}
4646

4747
dependencies {
48-
implementation('org.spongepowered:mixin:0.7.10-SNAPSHOT') {
48+
compile('org.spongepowered:mixin:0.7.10-SNAPSHOT') {
4949
exclude module: 'launchwrapper'
5050
exclude module: 'guava'
5151
exclude module: 'gson'
@@ -55,8 +55,10 @@ dependencies {
5555
implementation files ('libs/rLog.jar')
5656
implementation files ('libs/identifier_obfc.jar')
5757
implementation files ('libs/ffmpeg.jar')
58-
implementation 'org.msgpack:msgpack-core:0.8.16'
59-
implementation 'org.msgpack:jackson-dataformat-msgpack:0.8.16'
58+
implementation 'com.google.code.gson:gson:2.4'
59+
60+
compile 'org.msgpack:msgpack-core:0.8.16'
61+
compile 'org.msgpack:jackson-dataformat-msgpack:0.8.16'
6062
}
6163
jar {
6264
manifest {

Forge-1.11.2/libs/rLog.jar

74 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)