Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Patbox committed Aug 13, 2023
1 parent 10b7ba3 commit 68a20c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static void removeVirtualPassenger(Entity entity, int passengerId) {

public static void removeVirtualPassenger(Entity entity, int... passengerId) {
for (var i : passengerId) {
((EntityExt) entity).polymerVE$getVirtualRidden().removeInt(i);
((EntityExt) entity).polymerVE$getVirtualRidden().rem(i);
}
((EntityExt) entity).polymerVE$markVirtualRiddenDirty();
}
Expand Down

0 comments on commit 68a20c7

Please sign in to comment.