Skip to content

Commit

Permalink
Done (#703)
Browse files Browse the repository at this point in the history
  • Loading branch information
Intybyte authored Aug 25, 2024
1 parent c9b06da commit aa7a071
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import org.bukkit.inventory.ItemStack;
import org.bukkit.scheduler.BukkitRunnable;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import java.util.Map;
import java.util.function.Supplier;
Expand Down Expand Up @@ -100,14 +99,12 @@ private StatusUpdateTask(@NotNull Craft craft) {
for(RequiredBlockEntry entry : craft.getType().getRequiredBlockProperty(CraftType.FLY_BLOCKS)) {
if(entry.contains(material)) {
flyblocks.add(entry, materials.get(material) );
break;
}
}

for(RequiredBlockEntry entry : craft.getType().getRequiredBlockProperty(CraftType.MOVE_BLOCKS)) {
if(entry.contains(material)) {
moveblocks.add(entry, materials.get(material) );
break;
}
}
}
Expand Down

0 comments on commit aa7a071

Please sign in to comment.