Prevent command from execute after game restrictions
If a player is at a prompt when either game hours restrictions starts or logged in time limit is exceeded the player is allow to enter one command.
This commit is contained in:
parent
fe69514067
commit
3da4030ac0
2 changed files with 25 additions and 5 deletions
|
@ -109,8 +109,7 @@ player_main(struct player *p)
|
|||
natp->nat_tgms = 0;
|
||||
}
|
||||
|
||||
while (status()) {
|
||||
command();
|
||||
while (status() && command()) {
|
||||
player->aborted = player->eof;
|
||||
empth_yield();
|
||||
}
|
||||
|
@ -129,9 +128,21 @@ command(void)
|
|||
{
|
||||
char *redir; /* UTF-8 */
|
||||
char scanspace[1024];
|
||||
time_t now;
|
||||
struct natstr *natp;
|
||||
|
||||
if (getcommand(player->combuf) < 0)
|
||||
return 0;
|
||||
|
||||
now = time(NULL);
|
||||
update_timeused(now);
|
||||
natp = getnatp(player->cnum);
|
||||
if (natp->nat_stat == STAT_ACTIVE &&
|
||||
natp->nat_timeused > m_m_p_d * 60) {
|
||||
pr("Max minutes per day limit exceeded.\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (parse(player->combuf, scanspace, player->argp, player->comtail,
|
||||
&player->condarg, &redir) < 0) {
|
||||
pr("See \"info Syntax\"?\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue