#why doesnt ``` public void

1 messages · Page 1 of 1 (latest)

rain plinth
#

^

acoustic heron
#

You need to set the position lf the armor stand

#

Do so before sending the add packet

rain plinth
#

ah

#

        Level level = ((CraftWorld)p.getWorld()).getHandle();
        ArmorStand stand = new ArmorStand(EntityType.ARMOR_STAND, level);
        stand.setPos(x, y, z);

        ClientboundAddMobPacket Standpacket = new ClientboundAddMobPacket(stand);
        ((CraftPlayer)p).getHandle().connection.getConnection().send(Standpacket);
    }``` same issue no errors
acoustic heron
#

Make sure that code is being called

#

Put a print statement or smth

rain plinth
#

i already do and it is getting called

acoustic heron
#

Don't edit the code you're sending ;/

rain plinth
#

im not

#

??

acoustic heron
#

Then why isn't there a a print statement?

#

Like you said you had

rain plinth
#

its where the method is called in my command

acoustic heron