SteamWar/BauSystem2.0
Archiviert
12
0

Fixing stuff because mojang
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2022-02-10 18:08:32 +01:00
Ursprung 775435783a
Commit a250aeb6b6
3 geänderte Dateien mit 10 neuen und 4 gelöschten Zeilen

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 = ''