View Single Post
  #6  
Old 06-07-2003, 05:03 AM
Lurker_005
Demi-God
 
Join Date: Jan 2002
Location: Tourist town USA
Posts: 1,671
Default

It looks like the code can handle 16 char for the door, but DB.sql still has it set to just 10. Change the DB name field to be 16 char long and it should work.

Oh and here is the sql to change it

Code:
ALTER TABLE `doors` CHANGE `name` `name` VARCHAR(16)  NOT NULL;
you will need to delete the doors and re source them.

Code:
delete from doors;
__________________
Please read the forum rules and look at reacent messages before posting.
Reply With Quote