Merge pull request 'Change 'print' statement to Python3 version so script can run.' (#10) from hifikuno/cosmic:master into master

Reviewed-on: #10
This commit is contained in:
James Tomasino 2023-02-27 12:14:39 +00:00
commit 5458eff4e9
1 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ if __name__ == '__main__':
parser.add_argument('--about', action="store_true", help="About Alone Among the Stars")
args = parser.parse_args()
if args.about:
print """Alone Among the Stars
print("""Alone Among the Stars
By Takuma Okada | noroadhome.itch.io
A solo roleplaying game about exploring fantastic planets
@ -90,7 +90,7 @@ world has unique features for you to discover and record.
In your ship's log, record a short description and your reaction in a few
sentences, and move on to the next discovery. Each time you complete a planet,
give it a name if it needs one, and find a new planet.
"""
""")
else:
main()