fixed Error in trade method in Parser

This commit is contained in:
Leonardo Brandenberger 2021-12-03 08:28:58 +01:00
parent 060310aebc
commit d749838600
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public class Parser {
if (!give){ if (!give){
output = "receive"; output = "receive";
} }
return textIO.newEnumInputReader(Config.Resource.class).read("Which Resource would you like to " + give ); return textIO.newEnumInputReader(Config.Resource.class).read("Which Resource would you like to " + output );
} }
} }