| 49 | |
| 50 | template <OsiPropertyMapType Type> |
| 51 | bool CharacterGetStat(OsiArgumentDesc & args) |
| 52 | { |
| 53 | auto character = FindCharacterByNameGuid(args[0].String); |
| 54 | if (character == nullptr || character->Stats == nullptr) return false; |
| 55 | |
| 56 | return OsirisPropertyMapGet(gCharacterStatsPropertyMap, character->Stats, args, 1, Type); |
| 57 | } |
| 58 | |
| 59 | void CharacterSetStatInt(OsiArgumentDesc const & args) |
| 60 | { |
nothing calls this directly
no test coverage detected