| 9083 | -------------------------------------------------------------------------------*/ |
| 9084 | |
| 9085 | Sint32 Entity::getCON() |
| 9086 | { |
| 9087 | Stat* entitystats; |
| 9088 | |
| 9089 | if ( (entitystats = this->getStats()) == nullptr ) |
| 9090 | { |
| 9091 | return 0; |
| 9092 | } |
| 9093 | return statGetCON(entitystats, this); |
| 9094 | } |
| 9095 | |
| 9096 | Sint32 statGetCON(Stat* entitystats, Entity* my) |
| 9097 | { |
no test coverage detected