Inseparable boolean field for items changed to UINT8

0 = removable (as before)
1 = inseparable (as before)
2+ = replaceable = inseparable, but can be replaced by a similar item

git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@5247 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
MaddMugsy
2012-05-01 19:08:03 +00:00
parent 83c47e0c6b
commit c237ca4dff
4 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -701,7 +701,7 @@ itemEndElementHandle(void *userData, const XML_Char *name)
else if(strcmp(name, "Inseparable") == 0)
{
pData->curElement = ELEMENT;
pData->curItem.inseparable = (BOOLEAN) atol(pData->szCharData);
pData->curItem.inseparable = (UINT8) atol(pData->szCharData);
}
else if(strcmp(name, "BR_NewInventory") == 0)
{