- Timestamp:
- Sep 9, 2014, 9:59:56 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Web/Web.cs
r183 r185 20 20 try { 21 21 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)"); 24 24 return; 25 25 }
Note:
See TracChangeset
for help on using the changeset viewer.