I updated and it's still there.
Fwiw the error itself refers to code trying to treat something that isn't an array, as an array. And if it's happening when it becomes one of your character's turns, chances are it's happening when trying to build the action menu for that character. Which might mean you've added or changed something in gamedata for that character (or perhaps an action) but accidentally affected the datatype or missplaced a comma or something similar?
Unfortunately I'm low on ideas as I simply cannot reproduce the issue on my own end without changing the code intentionally to do so. All I can really suggest is that you place a breakpoint somewhere inside the DoTurn() function in oBattle's create event, just after the point where it has decided that it's a player turn (like the if (_unit.enemy == false) line). and run debug mode. Then when you hit this breakpoint use the Step Into Function Call button to progress one line at a time until the error occurs which might give you more clues. As your error as posted is struggling to isolate the problem line.
Hello again! sorry to bother you, but I believe your bug may have been related to this issue that was reported recently. Was HTML5 the platform where you were hitting this bug? If so and you get a spare moment would you be able to either get the latest files or implement the fix mentioned in that post and let me know if you still get issues in the browser?
-S
No dice, I was using the GX.games browser launcher, it might just be that system it seems pretty buggy. But I'm running into another issue with the regular launcher, after yours and the slime's turn it does this:
############################################################################################
ERROR in
action number 1
of Step Event0
for object oBattle:
trying to index a variable which is not an array
at gml_Script_anon_anon_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4071_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4117_anon_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4071_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0 (line 139) - if (_option[0] == "Attack") return 99;
############################################################################################
gml_Script_anon_anon_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4071_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4117_anon_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4071_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0 (line 139)
gml_Script_anon_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4071_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0 (line 146) - return _Priority(_b) - _Priority(_a);
gml_Script_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0 (line 135)
gml_Object_oBattle_Step_0 (line 42) - if (!instance_exists(oMenu)) DoTurn(units[turn]);
That, fortunately is the exact issue mentioned in the post above. Will look into the GX games thing but with the windows launcher if you implement the fix in the link in my previous post, or get the newest files it will fix that particular error. The mention of " if (_option[0] == "Attack") return 99;" is the giveaway.
I got an error when I interact with the slimes:
___________________________________________
############################################################################################
ERROR in
action number 1
of Create Event
for object oBattle:
argument 5 needs to be a struct
at gml_Object_oBattle_Create_0 (line 37) - enemyUnits[i] = instance_create_depth(x+250+((i mod 3)*10)+((i div 3)*25),y+68+((i mod 3)*20),unitDepth,oBattleUnitEnemy,enemies[i]);
############################################################################################
gml_Object_oBattle_Create_0 (line 37)
gml_Script_NewEncounter (line 3)
gml_Object_oSlime_Collision_oPlayer (line 3) - NewEncounter(choose([oBattleUnitSlime,oBattleUnitSlime],[oBattleUnitSlime]), sBgField);