mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-12 04:23:54 +00:00
[Forge] Update to latest 1.11.2 mappings
This commit is contained in:
@ -26,11 +26,11 @@ repositories {
|
||||
}
|
||||
}
|
||||
|
||||
ext.forgeVersion = "13.20.0.2237"
|
||||
ext.forgeVersion = "13.20.1.2386"
|
||||
|
||||
minecraft {
|
||||
version = "1.11.2-${project.forgeVersion}"
|
||||
mappings = "snapshot_20170221"
|
||||
mappings = "stable_32"
|
||||
runDir = 'run'
|
||||
|
||||
replaceIn "com/sk89q/worldedit/forge/ForgeWorldEdit.java"
|
||||
|
@ -36,7 +36,7 @@ final class ForgeAdapter {
|
||||
}
|
||||
|
||||
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) {
|
||||
|
Reference in New Issue
Block a user