mud/fluffos-2.23-ds03/testsuite/command/say.c
2020-09-06 05:43:07 -07:00

13 lines
191 B
C

#include <command.h>
#ifdef __NO_ENVIRONMENT__
#define say(x) shout(x)
#endif
int main(string arg)
{
say((string)previous_object()->query_name()
+ " says: " + arg + "\n");
return 1;
}