I'm using live snippets
The context:
Card game.
I'm loading all the cards from JSON files. Each card has a bunch of characteristics, including "effect" (which is a string of GML code, containing what the card actually does)
Then, the oCardLoader, when loading a card, assigns it a live snippet, containing the effect string.
live_snippet_create()
is called inside oCardLoader
effect()
is called inside the card struct
With this setup, I'm having these errors. Pretty sure it's not too specific to the project (although I may be wrong)