From db87be2cc1258359206dae5782887812b432ea94 Mon Sep 17 00:00:00 2001 From: Codex Automation Date: Sat, 30 May 2026 20:34:27 -0300 Subject: [PATCH] Implement lost_colony for issue 16 --- game.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/game.py b/game.py index b13902f..83fccd3 100644 --- a/game.py +++ b/game.py @@ -131,9 +131,9 @@ def ancient_ruins(self): # display "You discovered ancient alien ruins with hidden technology!" pass - def lost_colony(self): - # display "You find a lost human colony struggling to survive." - pass + def lost_colony(self): + # display "You find a lost human colony struggling to survive." + print("You find a lost human colony struggling to survive.") def abandoned_ship(self): print("An abandoned spaceship drifts in the void. Do you explore it?")