#!/usr/bin/env python from commands.command import Command from evennia import CmdSet class CmdFeed(Command): """ Feed or give something to an object that can eat. Typically this is used to feed wood to a fire, or berries to a beast. """ key = "feed" def func(self): args = self.args.strip() if not args: self.caller.msg("Feed what?") return print(self.obj.key) self.obj.feed(self.caller, self.args) class CmdFeedSet(CmdSet): def at_cmdset_creation(self): self.add(CmdFeed)