From 075999b56161213160a91b615e71485ec15e2398 Mon Sep 17 00:00:00 2001 From: Andrew Gazelka Date: Tue, 12 Nov 2024 14:00:56 -0800 Subject: [PATCH] feat: replace pink concrete with resource nodules --- events/proof-of-concept/src/command/replace.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/proof-of-concept/src/command/replace.rs b/events/proof-of-concept/src/command/replace.rs index 9ab09b8d..38738583 100644 --- a/events/proof-of-concept/src/command/replace.rs +++ b/events/proof-of-concept/src/command/replace.rs @@ -109,7 +109,7 @@ impl hyperion_clap::MinecraftCommand for ReplaceCommand { let started_time = std::time::Instant::now(); let concrete_positions: HashSet<_, GxBuildHasher> = - blocks.par_scan_for(BlockState::ORANGE_CONCRETE).collect(); + blocks.par_scan_for(BlockState::PINK_CONCRETE).collect(); let scan_time = started_time.elapsed();