Skip to content
Snippets Groups Projects
Commit 40eec7fa authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Posts from QWKnet users don't count as "posts" for local stats

Might add some other statistic for these relayed posts at some point.
parent 26101790
Branches
Tags
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -2465,6 +2465,9 @@ BOOL user_posted_msg(scfg_t* cfg, user_t* user, int count) ...@@ -2465,6 +2465,9 @@ BOOL user_posted_msg(scfg_t* cfg, user_t* user, int count)
user->posts =(ushort)adjustuserrec(cfg, user->number, U_POSTS, count); user->posts =(ushort)adjustuserrec(cfg, user->number, U_POSTS, count);
user->ptoday=(ushort)adjustuserrec(cfg, user->number, U_PTODAY, count); user->ptoday=(ushort)adjustuserrec(cfg, user->number, U_PTODAY, count);
if(user->rest & FLAG('Q'))
return TRUE;
return inc_post_stats(cfg, count); return inc_post_stats(cfg, count);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment