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

@ -135,7 +135,7 @@ func quest_status_update():
var restriction_typing = {
Quest.RESTRICTIONS.NO_DEATHS : '- Destruction of your ship will lead to quest failure.',
Quest.RESTRICTIONS.NO_WEAPON : '- Using any weapon (even accidently) is prohibited.',
Quest.RESTRICTIONS.TIMER : '- You have {sec} seconds to complete the quest since it is accepted.'
Quest.RESTRICTIONS.TIMER : '- You have {sec} seconds to complete the quest.'
}
if upd_quest.data.has('timer'):
restriction_typing[Quest.RESTRICTIONS.TIMER] = restriction_typing[Quest.RESTRICTIONS.TIMER].format({"sec" : upd_quest.data['timer']})