| 714 | } |
| 715 | |
| 716 | BOOL ItemMinStats(PlayerStruct *p, ItemStruct *x) |
| 717 | { |
| 718 | if (p->_pMagic < x->_iMinMag) |
| 719 | return FALSE; |
| 720 | |
| 721 | if (p->_pStrength < x->_iMinStr) |
| 722 | return FALSE; |
| 723 | |
| 724 | if (p->_pDexterity < x->_iMinDex) |
| 725 | return FALSE; |
| 726 | |
| 727 | return TRUE; |
| 728 | } |
| 729 | |
| 730 | void CalcPlrBookVals(int p) |
| 731 | { |
no outgoing calls
no test coverage detected