fix(wrapper): packets are final
This commit is contained in:
parent
02e03794e4
commit
3ec2e7a584
1 changed files with 2 additions and 2 deletions
|
@ -110,8 +110,8 @@ public class AppearanceManager {
|
|||
}
|
||||
|
||||
public void updateOthers() {
|
||||
WrapperPlayServerEntityDestroy destroy = new WrapperPlayServerEntityDestroy();
|
||||
WrapperPlayServerNamedEntitySpawn spawn = new WrapperPlayServerNamedEntitySpawn();
|
||||
final WrapperPlayServerEntityDestroy destroy = new WrapperPlayServerEntityDestroy();
|
||||
final WrapperPlayServerNamedEntitySpawn spawn = new WrapperPlayServerNamedEntitySpawn();
|
||||
destroy.setEntityIds(IntList.of(player.getEntityId()));
|
||||
spawn.setEntityId(player.getEntityId());
|
||||
spawn.setLocation(player.getLocation());
|
||||
|
|
Loading…
Reference in a new issue