#include "defs.h"

main(str) {
  string who, what;
  object ob;
 
  SECURE
  if(!str || sscanf(str, "%s %s",who,what)!=2)
    return !notify_fail("Usage: force <who> <what>\n"); 
  if(!(ob=find_living(who))) WRITE1("No such player.\n");
  command(what, ob);
  write("Done.\n");
  return 1;
}
