From ca1b76ab0265de26c28509cf7573954b16b5b17e Mon Sep 17 00:00:00 2001 From: Griatch Date: Sat, 20 Aug 2016 09:36:30 +0200 Subject: [PATCH] Remove WEBSOCKET_ENABLED and adjoining vars from settings_default since it doesn't do anything; webclient uses WEBSOCKET_CLIENT_ENABLED etc. --- evennia/settings_default.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/evennia/settings_default.py b/evennia/settings_default.py index 4a43beacd..6a74547e5 100644 --- a/evennia/settings_default.py +++ b/evennia/settings_default.py @@ -93,14 +93,6 @@ SSL_ENABLED = False SSL_PORTS = [4001] # Interface addresses to listen to. If 0.0.0.0, listen to all. Use :: for IPv6. SSL_INTERFACES = ['0.0.0.0'] -# Activate custom websocket support. This is unrelated to the websocket client! -# This is intended to be used by optional third-party connections/applications -# or clients. -WEBSOCKET_ENABLED = False -# Ports to use for Websockets -WEBSOCKET_PORTS = [8021] -# Interface addresses to listen to. If 0.0.0.0, listen to all. Use :: for IPv6. -WEBSOCKET_INTERFACES = ['0.0.0.0'] # This determine's whether Evennia's custom admin page is used, or if the # standard Django admin is used. EVENNIA_ADMIN = True