Thread: Release.
View Single Post
  #5  
Old 08-20-2013, 09:20 PM
rencro
Hill Giant
 
Join Date: Sep 2008
Location: So. California
Posts: 219
Default

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..
Reply With Quote