This commit is contained in:
eaglercraft 2024-03-02 22:18:18 -08:00
commit 573420e1b8
613 changed files with 5708 additions and 4445 deletions

View file

@ -66,7 +66,8 @@ public class BlockPressurePlate extends BlockBasePressurePlate {
}
if (!list.isEmpty()) {
for (Entity entity : list) {
for (int i = 0, l = list.size(); i < l; ++i) {
Entity entity = list.get(i);
if (!entity.doesEntityNotTriggerPressurePlate()) {
return 15;
}