* Callback function that is called after a sign is placed * @param result of the operation * @param new_sign ID of the placed sign. */
| 131 | * @param new_sign ID of the placed sign. |
| 132 | */ |
| 133 | void CcPlaceSign(Commands, const CommandCost &result, SignID new_sign) |
| 134 | { |
| 135 | if (result.Failed()) return; |
| 136 | |
| 137 | ShowRenameSignWindow(Sign::Get(new_sign)); |
| 138 | ResetObjectToPlace(); |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * |
nothing calls this directly
no test coverage detected