| 478 | } |
| 479 | |
| 480 | std::optional<STDString*> RPGStats::GetConditions(int conditionsId) |
| 481 | { |
| 482 | if (conditionsId > 0) { |
| 483 | return &Conditions[conditionsId]; |
| 484 | } else { |
| 485 | return {}; |
| 486 | } |
| 487 | } |
| 488 | |
| 489 | int RPGStats::GetOrCreateConditions(STDString const& conditions) |
| 490 | { |
nothing calls this directly
no outgoing calls
no test coverage detected