diff options
author | peter1138 <peter1138@openttd.org> | 2006-01-21 21:45:34 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2006-01-21 21:45:34 +0000 |
commit | d13763a9c4cce6ef81bb333cec241d9d7dcc633e (patch) | |
tree | cd9a4d06a2b5d27d17ecd6efb392c5053eadd900 | |
parent | d22e8c636d98187b854f3de3a61a3c2ed5f11105 (diff) | |
download | openttd-d13763a9c4cce6ef81bb333cec241d9d7dcc633e.tar.xz |
(svn r3414) - Fix: Disable the Fund New Industry menu item and window when connected to a server as a spectator.
-rw-r--r-- | industry_gui.c | 1 | ||||
-rw-r--r-- | main_gui.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/industry_gui.c b/industry_gui.c index 10b2c5d3d..24decb00c 100644 --- a/industry_gui.c +++ b/industry_gui.c @@ -267,6 +267,7 @@ static const WindowDesc * const _industry_window_desc[2][4] = { void ShowBuildIndustryWindow(void) { + if (_current_player == OWNER_SPECTATOR) return; AllocateWindowDescFront(_industry_window_desc[_patches.build_rawmaterial_ind][_opt_ptr->landscape],0); } diff --git a/main_gui.c b/main_gui.c index 2c8c1a2ae..066492711 100644 --- a/main_gui.c +++ b/main_gui.c @@ -791,7 +791,8 @@ static void ToolbarLeagueClick(Window *w) static void ToolbarIndustryClick(Window *w) { - PopupMainToolbMenu(w, 280, 12, STR_INDUSTRY_DIR, 2, 0); + int dis = _current_player == OWNER_SPECTATOR ? 2 : 0; + PopupMainToolbMenu(w, 280, 12, STR_INDUSTRY_DIR, 2, dis); } static void ToolbarTrainClick(Window *w) |