| 319 | } |
| 320 | |
| 321 | void delta_monster_hp(int mi, int hp, BYTE bLevel) |
| 322 | { |
| 323 | DMonsterStr *pD; |
| 324 | |
| 325 | if (gbMaxPlayers != 1) { |
| 326 | sgbDeltaChanged = TRUE; |
| 327 | pD = &sgLevels[bLevel].monster[mi]; |
| 328 | if (pD->_mhitpoints > hp) |
| 329 | pD->_mhitpoints = hp; |
| 330 | } |
| 331 | } |
| 332 | |
| 333 | void delta_sync_monster(const TSyncMonster *pSync, BYTE bLevel) |
| 334 | { |
no outgoing calls
no test coverage detected