hello there everyone,

Just thought I would post this here incase anyone needed it. If for some reason you get the error with Gameobject_spawns that pops up in the world window in yellow text, or the same thing with the Creature_spawns, then try using this SQL that I made, it worked fine for me and fixed the issue.

~~ Gameobject_spawns Fix ~~
Code:
alter table `gameobject_spawns` add column `instanceids` text not null;
~~ Creature_spawns Fix ~~
Code:
alter table `creature_spawns` add column `instanceids` text not null;
Hope it helps some of you and Good Luck.