Update system.py

This commit is contained in:
SpudGunMan
2024-07-20 00:08:56 -07:00
parent e280a92eeb
commit ed00d4b703
+3 -3
View File
@@ -61,14 +61,14 @@ else:
# Solar Conditions Configuration
solar_conditions_enabled = config['solar'].getboolean('enabled', True)
if solar_conditions_enabled:
from modules.solarconditions import * # from the spudgunman/meshing-around repo
from solarconditions import * # from the spudgunman/meshing-around repo
trap_list = trap_list + trap_list_solarconditions # items hfcond, solar, sun, moon
help_message = help_message + ", sun, hfcond, solar, moon, tide"
# Location Configuration
location_enabled = config['location'].getboolean('enabled', True)
if location_enabled:
from modules.locationdata import * # from the spudgunman/meshing-around repo
from locationdata import * # from the spudgunman/meshing-around repo
trap_list = trap_list + trap_list_location # items tide, whereami, wxc, wx
help_message = help_message + ", whereami, wx, wxc, wxa"
@@ -76,7 +76,7 @@ if location_enabled:
bbs_enabled = config['bbs'].getboolean('enabled', True)
bbsdb = config['bbs'].get('bbsdb', 'bbsdb.pkl')
if bbs_enabled:
from modules.bbstools import * # from the spudgunman/meshing-around repo
from bbstools import * # from the spudgunman/meshing-around repo
trap_list = trap_list + trap_list_bbs # items bbslist, bbspost, bbsread, bbsdelete, bbshelp
help_message = help_message + ", bbslist, bbshelp"