Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
fix a bug where you were unable to interact with some entities
Browse files Browse the repository at this point in the history
  • Loading branch information
ManInMyVan committed Feb 11, 2024
1 parent f9be955 commit 9a61142
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ private void getMouseOver(float p_getMouseOver_1_, CallbackInfo ci) {

pointedEntity = null;
Vec3 vec33 = null;
List<Entity> list = mc.theWorld.getEntities(EntityLivingBase.class, Predicates.and(EntitySelectors.NOT_SPECTATING, p_apply_1_ -> p_apply_1_ != null && p_apply_1_.canBeCollidedWith() && p_apply_1_ != entity));
List<Entity> list = mc.theWorld.getEntities(Entity.class, Predicates.and(EntitySelectors.NOT_SPECTATING, p_apply_1_ -> p_apply_1_ != null && p_apply_1_.canBeCollidedWith() && p_apply_1_ != entity));
double d2 = d1;

for (Entity entity1 : list) {
Expand Down

0 comments on commit 9a61142

Please sign in to comment.