From ff4517fa8a1aed5d5408c0fca99236e71f5648fd Mon Sep 17 00:00:00 2001 From: griever Date: Sun, 6 Jan 2002 04:09:44 +0000 Subject: [PATCH] ... --- src/s_user.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/s_user.c b/src/s_user.c index e98bc464b..ada6ad6a3 100644 --- a/src/s_user.c +++ b/src/s_user.c @@ -365,7 +365,7 @@ int check_for_target_limit(aClient *sptr, void *target, const char *name) return 0; } - if (TSTime() < sptr->user->nexttarget) + if (TStime() < sptr->user->nexttarget) { sptr->since += TARGET_DELAY; /* lag them up */ sptr->user->nexttarget += TARGET_DELAY; @@ -373,9 +373,9 @@ int check_for_target_limit(aClient *sptr, void *target, const char *name) return 1; } - if (TSTime() > sptr->user->nexttarget + TARGET_DELAY*MAXTARGETS) + if (TStime() > sptr->user->nexttarget + TARGET_DELAY*MAXTARGETS) { - sptr->user->nexttarget = TSTime() + TARGET_DELAY*MAXTARGETS; + sptr->user->nexttarget = TStime() + TARGET_DELAY*MAXTARGETS; } sptr->user->nexttarget += TARGET_DELAY;