add parameter to getDescription

This commit is contained in:
chrys
2016-09-17 02:10:48 +02:00
parent 10ddc98d47
commit 482394c92a
55 changed files with 110 additions and 72 deletions

View File

@ -54,7 +54,7 @@ class commandManager():
if self.commandExists(environment, command, section):
try:
if environment['generalInformation']['tutorialMode']:
environment['commands'][section][command].getDescription()
environment['commands'][section][command].getDescription(environment)
else:
environment['commands'][section][command].run(environment)
except Exception as e: