(svn r3414) - Fix: Disable the Fund New Industry menu item and window when connected to a server as a spectator.

This commit is contained in:
peter1138 2006-01-21 21:45:34 +00:00
parent d22e8c636d
commit d13763a9c4
2 changed files with 3 additions and 1 deletions

View File

@ -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);
}

View File

@ -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)