Fixed namegen

I need to redesign TextGenerator a bit, I kinda hacked it to do two things and it's not the most elegant.
This commit is contained in:
Luke Rogers 2013-09-19 10:42:44 +12:00
parent f98774032f
commit c0b3285c4a
2 changed files with 3 additions and 2 deletions

View file

@ -8,8 +8,8 @@ GEN_DIR = "./plugins/data/name_files/"
def get_generator(_json):
data = json.loads(_json)
return textgen.TextGenerator(data["name"], data["templates"],
data["parts"], data["default_templates"])
return textgen.TextGenerator(data["templates"],
data["parts"], default_templates = data["default_templates"])
@hook.command(autohelp=False)