Polymer

Polymer

763k Downloads

Wrong super call in TestEntity2

Dev0Louis opened this issue ยท 1 comments

commented

In https://github.com/Patbox/polymer/blob/dev/1.20/polymer-core/src/testmod/java/eu/pb4/polymertest/TestEntity2.java there is

    @Override
    public void onStoppedTrackingBy(ServerPlayerEntity player) {
        player.networkHandler.sendPacket(new PlayerRemoveS2CPacket(List.of(this.getUuid())));
        super.onStartedTrackingBy(player);
    }

It calls super.onStartedTrackingBy, but I think it should be super.onStoppedTrackingBy

commented

This is more of polymer test mode than anything so doesn't matter