* Perform the "medium advertising campaign" town action. * @param t The town to advertise in. * @param flags Type of operation. * @return An empty cost. */
| 3424 | * @return An empty cost. |
| 3425 | */ |
| 3426 | static CommandCost TownActionAdvertiseMedium(Town *t, DoCommandFlags flags) |
| 3427 | { |
| 3428 | if (flags.Test(DoCommandFlag::Execute)) { |
| 3429 | ModifyStationRatingAround(t->xy, _current_company, 0x70, 15); |
| 3430 | } |
| 3431 | return CommandCost(); |
| 3432 | } |
| 3433 | |
| 3434 | /** |
| 3435 | * Perform the "large advertising campaign" town action. |
nothing calls this directly
no test coverage detected