From 6576164fadab42ccb56d4e542ab86a021814fa78 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Wed, 2 Jul 2025 10:49:05 -0400 Subject: [PATCH] Give a healing potion too for testing. --- worldbuilder.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/worldbuilder.cpp b/worldbuilder.cpp index 4335ac2..271b232 100644 --- a/worldbuilder.cpp +++ b/worldbuilder.cpp @@ -180,6 +180,10 @@ void WorldBuilder::configure_starting_items(DinkyECS::World &world) { auto &inventory = world.get_the(); inventory.add("hand_r", torch_id); world.make_constant(torch_id); + + auto healing = System::spawn_item(world, "POTION_HEALING_SMALL"); + inventory.add("hand_l", healing); + world.make_constant(healing); } void WorldBuilder::place_entities(DinkyECS::World &world) {