From 4826df54f90037fb73174aae700c802f116884d4 Mon Sep 17 00:00:00 2001 From: neersighted Date: Tue, 15 May 2012 20:08:26 -0700 Subject: [PATCH] Updated mcitems.py command names --- plugins/mcitems.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/mcitems.py b/plugins/mcitems.py index 090c97f..123be50 100755 --- a/plugins/mcitems.py +++ b/plugins/mcitems.py @@ -48,10 +48,10 @@ with open("plugins/data/itemids.txt") as f: ids.append((id, name)) -@hook.command("id") +@hook.command("mcid") @hook.command -def itemid(input, reply=None): - "itemid -- gets the id from an item or vice versa" +def mcitem(input, reply=None): + "mcitem -- gets the id from an item or vice versa" input = input.lower().strip() if input == "": @@ -81,10 +81,10 @@ def itemid(input, reply=None): return out -@hook.command("craft") +@hook.command("mccraft") @hook.command -def recipe(input, reply=None): - "recipe -- gets the crafting recipe for an item" +def mcrecipe(input, reply=None): + "mcrecipe -- gets the crafting recipe for an item" input = input.lower().strip() results = []