[Sphere-axis-commits] CVS: Axis itemtweaktab.cpp,1.3,1.4
Brought to you by:
pesterle
From: Philip E. <pes...@us...> - 2002-05-10 00:05:22
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv13939 Modified Files: itemtweaktab.cpp Log Message: Item attributes will now be cleared properly in the Item Tweak tab. Index: itemtweaktab.cpp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/itemtweaktab.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** itemtweaktab.cpp 1 May 2002 03:33:11 -0000 1.3 --- itemtweaktab.cpp 10 May 2002 00:05:18 -0000 1.4 *************** *** 452,456 **** m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bInvisible) dwVal |= ATTR_CURSED; else --- 452,456 ---- m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bCursed) dwVal |= ATTR_CURSED; else *************** *** 468,472 **** m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bInvisible) dwVal |= ATTR_BLESSED; else --- 468,472 ---- m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bBlessed) dwVal |= ATTR_BLESSED; else *************** *** 484,488 **** m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bInvisible) dwVal |= ATTR_BLESSED2; else --- 484,488 ---- m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bBlessed2) dwVal |= ATTR_BLESSED2; else *************** *** 500,504 **** m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bInvisible) dwVal |= ATTR_CAN_DECAY; else --- 500,504 ---- m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bCanDecay) dwVal |= ATTR_CAN_DECAY; else *************** *** 516,520 **** m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bInvisible) dwVal |= ATTR_CURSED2; else --- 516,520 ---- m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bCursed2) dwVal |= ATTR_CURSED2; else *************** *** 532,536 **** m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bInvisible) dwVal |= ATTR_FORSALE; else --- 532,536 ---- m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bForSale) dwVal |= ATTR_FORSALE; else *************** *** 548,552 **** m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bInvisible) dwVal |= ATTR_STOLEN; else --- 548,552 ---- m_csAttrValue.GetWindowText(csCurrentVal); DWORD dwVal = ahextoi(csCurrentVal); ! if (m_bStolen) dwVal |= ATTR_STOLEN; else |