aboutsummaryrefslogtreecommitdiffstats
path: root/FICS
diff options
context:
space:
mode:
Diffstat (limited to 'FICS')
-rw-r--r--FICS/talkproc.c69
1 files changed, 39 insertions, 30 deletions
diff --git a/FICS/talkproc.c b/FICS/talkproc.c
index 3a20b91..4ccdeb2 100644
--- a/FICS/talkproc.c
+++ b/FICS/talkproc.c
@@ -419,38 +419,47 @@ PRIVATE int chtell(int p, int ch, char *msg)
return COM_OK;
}
-PUBLIC int com_whisper(int p, param_list param)
+PUBLIC int
+com_whisper(int p, param_list param)
{
- int g;
- int p1;
- int count = 0;
+ int count = 0;
+ int g;
+ int p1;
- if (!parray[p].num_observe && parray[p].game < 0) {
- pprintf(p, "You are not playing or observing a game.\n");
- return COM_OK;
- }
- if (!parray[p].registered && (parray[p].game == -1)) {
- pprintf(p, "You must be registered to whisper other people's games.\n");
- return COM_OK;
- }
- if (parray[p].game >= 0)
- g = parray[p].game;
- else
- g = parray[p].observe_list[0];
- for (p1 = 0; p1 < p_num; p1++) {
- if (p1 == p)
- continue;
- if (parray[p1].status != PLAYER_PROMPT)
- continue;
- if (player_is_observe(p1, g) ||
- (garray[g].link >= 0 && player_is_observe(p1, garray[g].link))) {
- tell(p, p1, param[0].val.string, TELL_WHISPER, 0);
- if ((parray[p].adminLevel >= ADMIN_ADMIN) || !garray[g].private)
- count++;
- }
- }
- pprintf(p, "whispered to %d.\n", count);
- return COM_OK;
+ if (!parray[p].num_observe && parray[p].game < 0) {
+ pprintf(p, "You are not playing or observing a game.\n");
+ return COM_OK;
+ }
+
+ if (!parray[p].registered && (parray[p].game == -1)) {
+ pprintf(p, "You must be registered to whisper other people's "
+ "games.\n");
+ return COM_OK;
+ }
+
+ if (parray[p].game >= 0)
+ g = parray[p].game;
+ else
+ g = parray[p].observe_list[0];
+
+ for (p1 = 0; p1 < p_num; p1++) {
+ if (p1 == p)
+ continue;
+ if (parray[p1].status != PLAYER_PROMPT)
+ continue;
+ if (player_is_observe(p1, g) ||
+ (garray[g].link >= 0 &&
+ player_is_observe(p1, garray[g].link))) {
+ tell(p, p1, param[0].val.string, TELL_WHISPER, 0);
+
+ if (parray[p].adminLevel >= ADMIN_ADMIN ||
+ !garray[g].private)
+ count++;
+ }
+ }
+
+ pprintf(p, "whispered to %d.\n", count);
+ return COM_OK;
}
PUBLIC int