exception access violation

@HalcyonKnight96 just ran into this issue with my game.

My issue was once I built my verse code, it crashed and then I couldn’t open the project again. To get into the project I went into the script, removed all the code, saved it which then allowed me to open the project with a bunch of errors.

After I found the piece of code that was messing it up for me. It ended up being an @editable to another verse script

game_manager := class<unique>(creative_device):
    

   #this @editable code would cause it to all break
    @editable
    KingOfTheHillManager : king_of_the_hill_manager = king_of_the_hill_manager{}



#other class file
king_of_the_hill_manager := class(creative_device):

    
    @editable
    GameManager : game_manager = game_manager{}