I'm consistently getting an issue in the latest release where enums are being read as variables? It happens any time I make a change to an event that contains an enum reference.
[live][12/6/2022 3:21:34 PM] Runtime error: [error] `instance#ref 105090(obj_drone_silo)` (instance of obj_drone_silo) does not have a variable `drone`.
And checking the code, it's just a simple switch statement where I do this...
switch (state) { // IDLE case drone.idle: break; }
Any idea why that's happening? Can I bypass it somehow?