From c69bf59a71541c0aff03804dcee332a893bec4cf Mon Sep 17 00:00:00 2001 From: Daanish Date: Sun, 29 Mar 2026 22:24:14 +0000 Subject: [PATCH] Keep minimum wood/metal to allow razor to always be craftable --- game/props/chest.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/props/chest.rb b/game/props/chest.rb index 9690104..435a409 100644 --- a/game/props/chest.rb +++ b/game/props/chest.rb @@ -4,6 +4,6 @@ class Chest < Prop setup_sprites("assets/images/chest.png", 1) def resources - { wood: rand(0..64), metal: rand(0..16), science: rand(0..4) } + { wood: rand(2..64), metal: rand(1..16), science: rand(0..4) } end end \ No newline at end of file