1
0
Fork 0
mirror of git://git.psyced.org/git/psyced synced 2024-08-06 12:38:25 +00:00
psyced/world/net/place/userthreads.c

16 lines
285 B
C

#include <net.h>
#include <person.h>
#include <status.h>
inherit NET_PATH "place/threads";
load(name, keep) {
P3((">> userthreads:load(%O, %O)\n", name, keep))
string nick;
if (sscanf(name, "~%s#updates", nick))
vSet("owners", ([ nick: 0 ]));
return ::load(name, keep);
}