My game runs perfectly fine under normal circumstances. However, if I'm in the game, then go to the menu and click "Main Menu," I get this. If I hit "Ignore," it rounds back to my 'start' label instead of back to the main menu. If I stay at that point (my start label leads directly to a menu) and open the menu, and click on main menu again, it asks for confirmation like normal, then takes me back to the main menu if I select yes. It's not giving me much info to work with, as I can't identify where the problem is. My best guess is a bit of code actually called 'part' at the very beginning of my script file.
Code: Select all
init -1 python:
def threepart(prefix,suffix):
return ConditionSwitch(
"part == 1", prefix + "/1/" + suffix + ".png",
"part == 2", prefix + "/2/" + suffix + ".png",
"part == 3", prefix + "/3/" + suffix + ".png")Code: Select all
label start:
$ part = 1So, does anyone have any insight?

