Quest save/load + beta tag for prereleases

This commit is contained in:
gotfishmakesticks 2023-11-16 17:51:07 +03:00
commit 33bcd65c53
5 changed files with 25 additions and 2 deletions

View file

@ -4,3 +4,6 @@ func _ready():
text = "GammaCosmicRays version {version}".format({"version" : Game.gameversion})
if OS.has_feature("editor"):
text += " uncompiled\nThis is a debug/prerelease version."
else:
if Game.beta:
text += " beta\nThis is a closed beta version."