diff options
-rw-r--r-- | sassbot/modules/artifact2.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sassbot/modules/artifact2.py b/sassbot/modules/artifact2.py index 04c3db2..b0d2643 100644 --- a/sassbot/modules/artifact2.py +++ b/sassbot/modules/artifact2.py @@ -10,7 +10,7 @@ import EquipmentCreate def adventurersinc(phenny, input):
#Variables
- if input.sender.lower() == "#fromsteamland":
+ if input.sender.lower() == "#fromsteamland" or input.sender.lower() == "#artifact":
strInputGroup = input.group().split(" ")
try:
strCmd1 = strInputGroup[1]
@@ -27,6 +27,7 @@ def adventurersinc(phenny, input): parameters['LiveVersion'] = '2.0'
parameters['Nick'] = input.nick
+ #Global Commands
if strCmd1 == "git":
phenny.say("Artifact v2 git: http://www.blatech.co.uk/JasonFS/Artifact-v2")
elif strCmd1 == "version":
|