| 1338 | } |
| 1339 | |
| 1340 | void CheckItemStats(int pnum) |
| 1341 | { |
| 1342 | PlayerStruct *p = &plr[pnum]; |
| 1343 | |
| 1344 | p->HoldItem._iStatFlag = FALSE; |
| 1345 | |
| 1346 | if (p->_pStrength >= p->HoldItem._iMinStr |
| 1347 | && p->_pMagic >= p->HoldItem._iMinMag |
| 1348 | && p->_pDexterity >= p->HoldItem._iMinDex) { |
| 1349 | p->HoldItem._iStatFlag = TRUE; |
| 1350 | } |
| 1351 | } |
| 1352 | |
| 1353 | void CheckBookLevel(int pnum) |
| 1354 | { |
no outgoing calls
no test coverage detected