3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-11-08 17:20:24 +01:00

18w07c - Fix skull handler

Dieser Commit ist enthalten in:
creeper123123321 2018-02-19 14:42:54 -03:00
Ursprung d7caf2ae3c
Commit 4e4b35b2e7

Datei anzeigen

@ -8,6 +8,8 @@ import us.myles.ViaVersion.protocols.protocolsnapshotto1_12_2.providers.BlockEnt
import us.myles.ViaVersion.protocols.protocolsnapshotto1_12_2.storage.BlockStorage; import us.myles.ViaVersion.protocols.protocolsnapshotto1_12_2.storage.BlockStorage;
public class SkullHandler implements BlockEntityProvider.BlockEntityHandler { public class SkullHandler implements BlockEntityProvider.BlockEntityHandler {
private final int SKULL_WALL_START = 4669;
private final int SKULL_END = 4788;
@Override @Override
public int transform(UserConnection user, CompoundTag tag) { public int transform(UserConnection user, CompoundTag tag) {
BlockStorage storage = user.get(BlockStorage.class); BlockStorage storage = user.get(BlockStorage.class);
@ -18,36 +20,15 @@ public class SkullHandler implements BlockEntityProvider.BlockEntityHandler {
return -1; return -1;
} }
int data = storage.get(position).getOriginal() & 0xF; int id = storage.get(position).getOriginal();
byte type = (Byte) tag.get("SkullType").getValue(); if (id >= SKULL_WALL_START && id <= SKULL_END) {
id += (byte) tag.get("SkullType").getValue() * 20 + (byte) tag.get("Rot").getValue();
int add = 0; } else {
System.out.println("Why does this block have the skull block entity? :(" + tag);
// wall head start
int blockId = 4669;
switch (data % 6) {
case 1:
add = (Byte) tag.get("Rot").getValue() + 4;
break;
case 2:
add = 0;
break;
case 3:
add = 2;
break;
case 4:
add = 3;
break;
case 5:
add = 1;
break;
} }
blockId += add + type * 20; return id;
return blockId;
} }
private long getLong(Tag tag) { private long getLong(Tag tag) {
return ((Integer) tag.getValue()).longValue(); return ((Integer) tag.getValue()).longValue();