mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-12 03:59:22 +00:00
Fixes #360
This commit is contained in:
parent
0e2ceda949
commit
393603e786
1 changed files with 10 additions and 0 deletions
|
@ -212,6 +212,16 @@ public class HybridPlotWorld extends ClassicPlotWorld {
|
|||
|
||||
public static byte rotate(final short id, byte data) {
|
||||
switch (id) {
|
||||
case 162:
|
||||
case 17: {
|
||||
if (data >= 4 && data < 12) {
|
||||
if (data >= 8) {
|
||||
return (byte) (data - 4);
|
||||
}
|
||||
return (byte) (data + 4);
|
||||
}
|
||||
return data;
|
||||
}
|
||||
case 183:
|
||||
case 184:
|
||||
case 185:
|
||||
|
|
Loading…
Reference in a new issue