[Bug Report] Character Select Screen doesn't get pushed by teleportato


rezecib
 Share

Recommended Posts

Normally when using the teleportato, you're given a chance to change characters. However, in Shipwrecked, it cuts straight to world generation without pushing the character select screen. I believe this originates in the Shipwrecked's gamelogic.lua, at line 1143:

		if SaveGameIndex:GetCurrentMode(slot) == "survival" and SaveGameIndex:IsContinuePending(slot) then

However, Shipwrecked has its own mode, so it fails this check (which was intended to prevent character select in adventure mode). This should be changed to check both:

		if (SaveGameIndex:GetCurrentMode(slot) == "survival" or SaveGameIndex:GetCurrentMode(slot) == "shipwrecked") and SaveGameIndex:IsContinuePending(slot) then

 


View full bug

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share