| 272 | } |
| 273 | |
| 274 | void Game_Variables::SubRange(int first_id, int last_id, Var_t value) { |
| 275 | PrepareRange(first_id, last_id, "Invalid write var[{},{}] -= {}!", value); |
| 276 | WriteRange(first_id, last_id, [value](){ return value; }, VarSub); |
| 277 | } |
| 278 | |
| 279 | void Game_Variables::MultRange(int first_id, int last_id, Var_t value) { |
| 280 | PrepareRange(first_id, last_id, "Invalid write var[{},{}] *= {}!", value); |
no outgoing calls
no test coverage detected