mirror of
https://github.com/ViaVersion/ViaBackwards.git
synced 2024-12-23 17:08:00 +01:00
Make 'em blocks placeable again!
This commit is contained in:
parent
85a5ae44e1
commit
a29e88f535
@ -287,7 +287,7 @@ public class EntityType1_13 {
|
||||
FISHIHNG_HOOK(90, EntityType.FISHING_BOBBER),
|
||||
SPECTRAL_ARROW(91, EntityType.SPECTRAL_ARROW),
|
||||
DRAGON_FIREBALL(93, EntityType.DRAGON_FIREBALL),
|
||||
TRIDENT(94, EntityType.TRIDENT);
|
||||
TRIDENT(94, EntityType.ARROW);
|
||||
|
||||
private final int id;
|
||||
private final EntityType type;
|
||||
|
@ -88,8 +88,9 @@ public abstract class BlockItemRewriter<T extends BackwardsProtocol> extends Rew
|
||||
}
|
||||
|
||||
protected Item handleItemToServer(Item item) {
|
||||
if (item == null || item.getTag() == null)
|
||||
return null;
|
||||
if (item == null) return null;
|
||||
if (item.getTag() == null) return item;
|
||||
|
||||
CompoundTag tag = item.getTag();
|
||||
if (tag.contains("ViaBackwards|" + getProtocolName())) {
|
||||
CompoundTag via = tag.get("ViaBackwards|" + getProtocolName());
|
||||
|
Loading…
Reference in New Issue
Block a user