/* Basic file for defined but unavailable commands.
(c) 2001 The AwakeMUD Consortium
*/
#include <stdio.h>
#include "structs.h"
#include "command.h"
#include "utils.h"
#include "comm.h"
#include "awake.h"
bool commandClass::PerformAction(struct char_data *ch, char *arg)
{
send_to_char("That command is unavailable right now.\r\n", ch);
return TRUE;
}