moss-n-puddles/commands/feedables.py
2025-01-28 15:57:14 -08:00

25 lines
457 B
Python
Executable file

#!/usr/bin/env python
from commands.command import Command
from evennia import CmdSet
class CmdFeed(Command):
"""
Feed or give.
"""
key = "feed"
aliases = ["give"]
def func(self):
args = self.args.strip()
if not args:
self.caller.msg("Feed what?")
return
self.obj.feed(self.caller, self.args)
class CmdFeedSet(CmdSet):
def at_cmdset_creation(self):
self.add(CmdFeed)