Fixed minecart command kicking players, fixes #395

This commit is contained in:
libraryaddict 2019-09-16 14:35:39 +12:00
parent ceb10171c9
commit a0b47d3741

@ -940,6 +940,8 @@ public class ReflectionManager {
return getNmsEntityPose((EntityPose) value); return getNmsEntityPose((EntityPose) value);
} else if (value instanceof VillagerData) { } else if (value instanceof VillagerData) {
return getNmsVillagerData((VillagerData) value); return getNmsVillagerData((VillagerData) value);
} else if (value instanceof WrappedChatComponent) {
return ((WrappedChatComponent) value).getHandle();
} }
return value; return value;