remove redundant var

This commit is contained in:
Couls
2019-03-07 15:45:58 -05:00
parent 8bc511f50f
commit ddb335fe2c
4 changed files with 6 additions and 10 deletions
@@ -225,10 +225,8 @@
set category = "Special Verbs"
set desc = "This button will allow you to stop other people giving you karma."
if (prefs.toggles & DISABLE_KARMA)
wants_karma = FALSE
to_chat(usr, "<span class='notice'>You have disabled karma gains.")
else
wants_karma = TRUE
to_chat(usr, "<span class='notice'>You have enabled karma gains.")
prefs.toggles ^= DISABLE_KARMA
prefs.save_preferences(src)