| 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); |
| 281 | WriteRange(first_id, last_id, [value](){ return value; }, VarMult); |
| 282 | } |
| 283 | |
| 284 | void Game_Variables::DivRange(int first_id, int last_id, Var_t value) { |
| 285 | PrepareRange(first_id, last_id, "Invalid write var[{},{}] /= {}!", value); |
no outgoing calls
no test coverage detected