ViaRewind icon indicating copy to clipboard operation
ViaRewind copied to clipboard

ViaRewind 1.7 armorstands issue

Open Rhodless opened this issue 4 years ago • 2 comments

My spigot is in 1.8 and I use ViaRewind so that 1.7 players can join the server. I am trying to make a flag with Dopped Items so I use ArmorStands then I make the item ride the ArmorStand, for 1.8 players everything works fine but for 1.7 players, if the armorstand is spawned in the air (the gravity for the armorstand is disabled in code btw) the item just fall. In my opinion, the armorstand is replaced by a zombie in 1.7 but client-side, the zombie falls and doesn't stay in the air Here's my code:

ArmorStand armorStand = (ArmorStand) player.getWorld().spawnEntity(player.getLocation().add(0, 2, 0), EntityType.ARMOR_STAND);
Item item = player.getWorld().dropItem(player.getLocation(), new ItemStack(Material.WOOL));
armorStand.setGravity(false);
armorStand.setVisible(false);
armorStand.setPassenger(item);

1.7 pov: RDmjNF5k 1.8 pov: htqy1MdQ

Rhodless avatar Sep 03 '21 11:09 Rhodless

bump?

Rhodless avatar Jan 29 '22 21:01 Rhodless

Check if the version is 1.7 and directly spawn a zombie instead of a armor stand and try to block zombie AI/movements

overkidding avatar May 20 '22 19:05 overkidding