summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDico200 <dico.karssiens@gmail.com>2016-03-12 01:00:07 +0100
committerDico200 <dico.karssiens@gmail.com>2016-03-12 01:00:07 +0100
commitfad1ae0f90022aee9d336618dd2c0cc3b8ba95a2 (patch)
tree1af79f876e182604398f9723b55f9bde9f03efc4
parent621f4ca23b1a1befacfb71c85255a19db0d260e1 (diff)
Fixed a return message in blockplacemods.py
-rw-r--r--blockplacemods.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/blockplacemods.py b/blockplacemods.py
index fd7071e..b87c5ee 100644
--- a/blockplacemods.py
+++ b/blockplacemods.py
@@ -150,7 +150,8 @@ def toggle_command(sender, command, label, args):
if arg2 == "clear":
if enabled:
del values[uuid]
- return " &aDisabled " + details[1]
+ return " &aDisabled " + details[1]
+ return " &cAlready disabled: " + details[1]
if arg2 == "details":
return " &aSetting %s:\n &9%s \n&6Accepted arguments: [<slot>|clear|details]" % (setting, details[2])