World kept crashing on a 2506 build, traced back to a null in items, first item I got a hit on was id961 Warrior Power Source had nulls for AugSlot1Visible - AugSlot5Visible, even though the table structure is set to allow nulls on these. Used:
Code:
UPDATE items set Augslot1Visible=1, AugSlot2Visible=1, AugSlot3Visible=1, AugSlot4Visible=1, AugSlot5Visible=1
WHERE AugSlot1Visible is null;
Working now..