SteamWar/BauSystem2.0
Archiviert
12
0

1.18 #77

Zusammengeführt
YoyoNow hat 18 Commits von 1.18 nach master 2022-03-30 11:21:07 +02:00 zusammengeführt
3 geänderte Dateien mit 10 neuen und 4 gelöschten Zeilen
Nur Änderungen aus Commit a250aeb6b6 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -52,6 +52,12 @@ dependencies {
compileOnly 'org.spigotmc:spigot-api:1.18-R0.1-SNAPSHOT' compileOnly 'org.spigotmc:spigot-api:1.18-R0.1-SNAPSHOT'
compileOnly files("${projectDir}/../lib/Spigot-1.18.jar") compileOnly files("${projectDir}/../lib/Spigot-1.18.jar")
compileOnly 'it.unimi.dsi:fastutil:8.5.6'
compileOnly 'com.mojang:datafixerupper:4.0.26'
compileOnly 'io.netty:netty-all:4.1.68.Final'
compileOnly 'com.mojang:authlib:1.5.25'
compileOnly 'com.mojang:brigadier:1.0.18'
compileOnly files("${projectDir}/../lib/WorldEdit-1.15.jar") compileOnly files("${projectDir}/../lib/WorldEdit-1.15.jar")
compileOnly files("${projectDir}/../lib/SpigotCore.jar") compileOnly files("${projectDir}/../lib/SpigotCore.jar")
} }

Datei anzeigen

@ -32,8 +32,8 @@ public class WarpEntity18 extends BaseArmorStand18 implements AbstractWarpEntity
public WarpEntity18(World world, Vector position, String name) { public WarpEntity18(World world, Vector position, String name) {
super(world, position); super(world, position);
j(true); this.j(true);
a(true); this.a(true);
this.name = name; this.name = name;
this.e(true); this.e(true);
this.S = -12000; this.S = -12000;

Datei anzeigen

@ -62,8 +62,8 @@ ext {
compileJava.options.encoding = 'UTF-8' compileJava.options.encoding = 'UTF-8'
compileJava.options.compilerArgs << '-parameter' compileJava.options.compilerArgs << '-parameter'
sourceCompatibility = 1.8 sourceCompatibility = 11
targetCompatibility = 1.8 targetCompatibility = 11
mainClassName = '' mainClassName = ''