Skip to content

Commit

Permalink
fix some terminals in the universal terminal not being ticked dependi…
Browse files Browse the repository at this point in the history
…ng on other installed terminals
  • Loading branch information
Mari023 committed Mar 28, 2024
1 parent 5dff341 commit e46f139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/mari_023/ae2wtlib/wut/ItemWUT.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public int countInstalledTerminals(ItemStack stack) {
public void inventoryTick(ItemStack itemStack, Level level, Entity entity, int i, boolean bl) {
for (var terminal : WUTHandler.wirelessTerminals.entrySet()) {
if (!WUTHandler.hasTerminal(itemStack, terminal.getKey()))
return;
continue;
terminal.getValue().item().inventoryTick(itemStack,
level, entity, i, bl);
}
Expand Down

0 comments on commit e46f139

Please sign in to comment.