(svn r11594) -Fix: don't allow changing network only patches settings from console when not in network game

This commit is contained in:
glx 2007-12-08 01:36:40 +00:00
parent af4d07b978
commit 04f0700357
1 changed files with 1 additions and 0 deletions

View File

@ -1806,6 +1806,7 @@ CommandCost CmdChangePatchSetting(TileIndex tile, uint32 flags, uint32 p1, uint3
if (sd == NULL) return CMD_ERROR;
if (!SlIsObjectCurrentlyValid(sd->save.version_from, sd->save.version_to)) return CMD_ERROR;
if ((sd->desc.flags & SGF_NETWORK_ONLY) && !_networking) return CMD_ERROR;
if ((sd->desc.flags & SGF_NO_NETWORK) && _networking) return CMD_ERROR;
if (flags & DC_EXEC) {