Mark "fix-1_21-placement-rotation" as unsupported option

Properly fixed with client code and would only cause issues when enabled
This commit is contained in:
FlorianMichael 2024-10-11 10:52:27 +02:00
parent 913ec2c9ce
commit 2c45810f4f
No known key found for this signature in database
GPG Key ID: C2FB87E71C425126

View File

@ -30,6 +30,7 @@ public class ViaFabricPlusVLViaConfig extends VLViaConfig {
super(configFile, logger);
UNSUPPORTED.add("simulate-pt");
UNSUPPORTED.add("fix-1_21-placement-rotation");
}
@Override
@ -37,4 +38,9 @@ public class ViaFabricPlusVLViaConfig extends VLViaConfig {
return false;
}
@Override
public boolean fix1_21PlacementRotation() {
return false;
}
}