From d13763a9c4cce6ef81bb333cec241d9d7dcc633e Mon Sep 17 00:00:00 2001 From: peter1138 Date: Sat, 21 Jan 2006 21:45:34 +0000 Subject: (svn r3414) - Fix: Disable the Fund New Industry menu item and window when connected to a server as a spectator. --- industry_gui.c | 1 + main_gui.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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) -- cgit v1.2.3-70-g09d2