1
0
Fork 0
mirror of git://git.psyced.org/git/psyced synced 2024-08-15 03:25:10 +00:00
This commit is contained in:
psyc://loupsycedyglgamf.onion/~lynX 2016-02-04 21:16:35 +01:00
parent d91e0894c1
commit 0118292714
4 changed files with 25 additions and 29 deletions

View file

@ -45,6 +45,10 @@ varargs string psyctext(string s, mapping m, vastring data,
case "_data":
r += p + (data || "");
break;
case "_data_psyctext":
if (data) data = psyctext(data, m, "", source, nick);
r += p + (data || "");
break;
case "_nick":
#if 1 //def USE_THE_NICK
r += p + (nick || m["_nick"] || "?");