3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-10-07 06:10:06 +02:00

[Forge] Update to latest 1.11.2 mappings

Dieser Commit ist enthalten in:
Kenzie Togami 2017-08-01 23:01:12 -07:00
Ursprung 4ec5411ba6
Commit cd4729f82f
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 5D200B325E157A81
4 geänderte Dateien mit 5 neuen und 5 gelöschten Zeilen

Datei anzeigen

@ -90,6 +90,7 @@ subprojects {
targetCompatibility = 1.7 targetCompatibility = 1.7
checkstyle.configFile = new File(rootProject.projectDir, "config/checkstyle/checkstyle.xml") checkstyle.configFile = new File(rootProject.projectDir, "config/checkstyle/checkstyle.xml")
checkstyle.toolVersion = '7.6.1'
repositories { repositories {
mavenCentral() mavenCentral()

Datei anzeigen

@ -27,7 +27,6 @@
<property name="max" value="2"/> <property name="max" value="2"/>
</module> </module>
<module name="SuperFinalize"/> <!-- We don't actually use this --> <module name="SuperFinalize"/> <!-- We don't actually use this -->
<module name="JUnitTestCase"/> <!-- Checks tearDown(), setUp() etc. -->
<!-- Style --> <!-- Style -->
<module name="LeftCurly"> <!-- Left brace never goes on another line --> <module name="LeftCurly"> <!-- Left brace never goes on another line -->

Datei anzeigen

@ -26,11 +26,11 @@ repositories {
} }
} }
ext.forgeVersion = "13.20.0.2237" ext.forgeVersion = "13.20.1.2386"
minecraft { minecraft {
version = "1.11.2-${project.forgeVersion}" version = "1.11.2-${project.forgeVersion}"
mappings = "snapshot_20170221" mappings = "stable_32"
runDir = 'run' runDir = 'run'
replaceIn "com/sk89q/worldedit/forge/ForgeWorldEdit.java" replaceIn "com/sk89q/worldedit/forge/ForgeWorldEdit.java"

Datei anzeigen

@ -36,7 +36,7 @@ final class ForgeAdapter {
} }
public static Vector adapt(Vec3d vector) { public static Vector adapt(Vec3d vector) {
return new Vector(vector.xCoord, vector.yCoord, vector.zCoord); return new Vector(vector.x, vector.y, vector.z);
} }
public static Vector adapt(BlockPos pos) { public static Vector adapt(BlockPos pos) {