Ignore:
Timestamp:
Sep 9, 2014, 9:59:56 PM (10 years ago)
Author:
alloc
Message:

fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Web/Web.cs

    r183 r185  
    2020                        try {
    2121                                int webPort = GamePrefs.GetInt (EnumGamePrefs.ControlPanelPort);
    22                                 if (!GamePrefs.GetBool (EnumGamePrefs.ControlPanelEnabled) || webPort < 1 || webPort > 65533) {
    23                                         Log.Out ("Webserver not started (ControlPanel not enabled or ControlPanelPort not within 1-65534)");
     22                                if (webPort < 1 || webPort > 65533) {
     23                                        Log.Out ("Webserver not started (ControlPanelPort not within 1-65534)");
    2424                                        return;
    2525                                }
Note: See TracChangeset for help on using the changeset viewer.