| 
 OK its fixed, it was loading items a couple of fields off.  As soon as TC gets a chance, cvs will be updated with the latest version.
 If you dont want to wait then just open database.cpp and change the following:
 
 [old]
 else if (item.Type == ItemTypeCommon) { // Common
 idx = 24;
 [/old]
 
 [new]
 else if (item.Type == ItemTypeCommon) { // Common
 idx = 26;
 [/new]
 
 
 and this also:
 [old]
 else if (item.Type == ItemTypeContainer) { // Containers
 idx = 20;
 [/old]
 
 [new]
 else if (item.Type == ItemTypeContainer) { // Containers
 idx = 21;
 [/new]
 
				__________________Lethal Encounter
 |