mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/block/drills.rs')
-rw-r--r--src/block/drills.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/drills.rs b/src/block/drills.rs
index 67d72f4..f3d2e8e 100644
--- a/src/block/drills.rs
+++ b/src/block/drills.rs
@@ -3,7 +3,7 @@ use crate::block::make_register;
use crate::block::simple::{cost, make_simple};
use crate::data::renderer::*;
-make_simple!(DrillBlock, |me: &DrillBlock, _, name, _| {
+make_simple!(DrillBlock, |me: &DrillBlock, _, name, _, _| {
if matches!(name, "cliff-crusher" | "large-plasma-bore" | "plasma-bore") {
const SFX: &[&str; 3] = &["", "-top", "-rotator"];
return Some(ImageHolder::Own(read_with("drills", name, SFX, me.size)));