Change flash not to print "Flash sent" for deities
It's annoying. It never did that for mortals.
This commit is contained in:
parent
2b3e11d35d
commit
53a4fc6e26
1 changed files with 4 additions and 5 deletions
|
@ -152,13 +152,12 @@ sendmessage(struct natstr *us, struct natstr *to, char *message, int verbose)
|
|||
us->nat_cnam, us->nat_cnum, message);
|
||||
sent++;
|
||||
}
|
||||
|
||||
if (player->god) {
|
||||
if (to)
|
||||
if (sent)
|
||||
pr("Flash sent to %s\n", to->nat_cnam);
|
||||
else
|
||||
if (to) {
|
||||
if (!sent)
|
||||
pr("%s is not logged on\n", to->nat_cnam);
|
||||
else if (sent)
|
||||
} else if (sent)
|
||||
pr("Broadcast sent to %d players\n", sent);
|
||||
else
|
||||
pr("No-one is logged in\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue