From ba3091ff23950acadd4ec6a0190894f6fd0f0df5 Mon Sep 17 00:00:00 2001 From: ikabod-kee Date: Sat, 8 Feb 2025 16:52:22 -0500 Subject: [PATCH] Cobblestone! --- assets/cubyz/blocks/stone.zig.zon | 2 +- assets/cubyz/recipes/brick_recipes.zig.zon | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/cubyz/blocks/stone.zig.zon b/assets/cubyz/blocks/stone.zig.zon index cbd9b26e..926b8269 100644 --- a/assets/cubyz/blocks/stone.zig.zon +++ b/assets/cubyz/blocks/stone.zig.zon @@ -3,7 +3,7 @@ .blockHealth = 25, .breakingPower = 1, .drops = .{ - .{.items = .{"cubyz:cobblestone"}}, + .{.items = .{.auto}}, }, .item = .{ .material = .{ diff --git a/assets/cubyz/recipes/brick_recipes.zig.zon b/assets/cubyz/recipes/brick_recipes.zig.zon index 67f45071..d2e846e9 100644 --- a/assets/cubyz/recipes/brick_recipes.zig.zon +++ b/assets/cubyz/recipes/brick_recipes.zig.zon @@ -23,6 +23,10 @@ .inputs = .{"cubyz:glacite"}, .output = "2 cubyz:glacite_wall", }, + .{ + .inputs = .{"cubyz:stone"}, + .output = "cubyz:cobblestone, + }, .{ .inputs = .{"cubyz:stone"}, .output = "cubyz:stone_tile",