Skip to content

Commit

Permalink
rm not needed codes
Browse files Browse the repository at this point in the history
  • Loading branch information
quentin452 committed Feb 4, 2024
1 parent 0936a6d commit 6d8a37e
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -818,17 +818,6 @@ public void spawnParticle(String particleName, double x, double y, double z, dou
((IWorldAccess) worldAccess).spawnParticle(particleName, x, y, z, velocityX, velocityY, velocityZ);
}
}
/**
* @author
* @reason
*/

@Overwrite
public int countEntities(Class<?> entityClass) {
return (int) this.loadedEntityList.stream()
.filter(entity -> entityClass.isInstance(entity) && (!(entity instanceof EntityLiving) || !((EntityLiving) entity).isNoDespawnRequired()))
.count();
}

@Shadow
public int getFullBlockLightValue(int p_72883_1_, int p_72883_2_, int p_72883_3_) {
Expand Down

0 comments on commit 6d8a37e

Please sign in to comment.