From 0e3f939b9a8cc9809cdf318aa05b399e54ced9d5 Mon Sep 17 00:00:00 2001 From: Richard Bronkhorst Date: Thu, 22 Jun 2023 07:34:45 +0200 Subject: [PATCH] Update commander.py --- nullptr/commander.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nullptr/commander.py b/nullptr/commander.py index 443d71a..7532cf3 100644 --- a/nullptr/commander.py +++ b/nullptr/commander.py @@ -212,7 +212,7 @@ class Commander(CommandLine): def do_query(self): location = self.ask_obj(System, 'Where are you? ') resource = input('what resource?').upper() - sellbuy = self.ask_multichoice(['sell','buy'], 'do you want to sell or buy?') + sellbuy = self.ask_multichoice(['sell','buy','exchange'], 'do you want to sell or buy?') print('Found markets:') for m in self.analyzer.find_markets(resource, sellbuy): system = self.store.get(System, m.system())