Should fix the issue with preferences not saving and fixes alternate titles not properly working.

This commit is contained in:
ririchiyo
2014-09-26 14:07:28 -04:00
parent 99ea0706e3
commit cbf9dd602e
2 changed files with 28 additions and 10 deletions

View File

@@ -778,6 +778,7 @@ var/list/admin_verbs_mod = list(
set category = "Preferences"
prefs.toggles ^= CHAT_ATTACKLOGS
prefs.save_preferences_sqlite(src, ckey)
if (prefs.toggles & CHAT_ATTACKLOGS)
usr << "You now will get attack log messages"
else
@@ -796,6 +797,7 @@ var/list/admin_verbs_mod = list(
set category = "Preferences"
prefs.toggles ^= CHAT_DEBUGLOGS
prefs.save_preferences_sqlite(src, ckey)
if (prefs.toggles & CHAT_DEBUGLOGS)
usr << "You now will get debug log messages"
else