3
0
Mirror von https://github.com/Moulberry/AxiomPaperPlugin.git synchronisiert 2024-09-29 07:50:05 +02:00

Fix typo - using cz as x coordinate

Dieser Commit ist enthalten in:
Moulberry 2024-04-14 21:23:49 +08:00
Ursprung 9791ca0ca3
Commit ab4a1c1f27
2 geänderte Dateien mit 4 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -19,8 +19,8 @@ public class Integration {
}
public static SectionPermissionChecker checkSection(Player player, World world, int cx, int cy, int cz) {
SectionPermissionChecker plotSquared = PlotSquaredIntegration.checkSection(player, world, cz, cy, cz);
SectionPermissionChecker worldGuard = WorldGuardIntegration.checkSection(player, world, cz, cy, cz);
SectionPermissionChecker plotSquared = PlotSquaredIntegration.checkSection(player, world, cx, cy, cz);
SectionPermissionChecker worldGuard = WorldGuardIntegration.checkSection(player, world, cx, cy, cz);
return SectionPermissionChecker.combine(plotSquared, worldGuard);
}

Datei anzeigen

@ -0,0 +1,2 @@
package com.moulberry.axiom.viaversion;public class ViaVersionHelper {
}