* Set a new map value. * @param pos Position to set. * @param x Horizontal coordinate of position to set. * @param y Vertical coordinate of position to set. * @param mapVal Value to set. */
| 204 | * @param mapVal Value to set. |
| 205 | */ |
| 206 | inline void ToolEffects::setMapValue(int x, int y, MapValue mapVal) |
| 207 | { |
| 208 | this->setMapValue(Position(x, y), mapVal); |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * Add a #FrontendMessage to the queue to send. |
no test coverage detected