mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 19:50:38 +00:00
Fence rotation
This commit is contained in:
parent
90d48b2cd0
commit
dd665ed9ce
1 changed files with 9 additions and 6 deletions
|
@ -59,12 +59,20 @@ public class HybridPlotWorld extends ClassicPlotWorld {
|
|||
return (byte) (data + 4);
|
||||
}
|
||||
return data;
|
||||
case 183:
|
||||
case 26: // bed
|
||||
case 86: // pumpkin
|
||||
case 91:
|
||||
case 183: // fence gate
|
||||
case 184:
|
||||
case 185:
|
||||
case 186:
|
||||
case 187:
|
||||
case 107:
|
||||
data = wrap2(data, 0);
|
||||
data = wrap2(data, 2);
|
||||
data = wrap2(data, 4);
|
||||
data = wrap2(data, 6);
|
||||
return data;
|
||||
case 53:
|
||||
case 67:
|
||||
case 108:
|
||||
|
@ -98,11 +106,6 @@ public class HybridPlotWorld extends ClassicPlotWorld {
|
|||
data = wrap(data, 8);
|
||||
data = wrap(data, 12);
|
||||
return data;
|
||||
|
||||
case 26:
|
||||
case 86:
|
||||
data = wrap(data, 0);
|
||||
return data;
|
||||
case 28:
|
||||
case 66:
|
||||
case 157:
|
||||
|
|
Loading…
Reference in a new issue