summaryrefslogtreecommitdiffstats
path: root/mbbsd/cal.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/cal.c')
-rw-r--r--mbbsd/cal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mbbsd/cal.c b/mbbsd/cal.c
index 4cacb91a..4082de51 100644
--- a/mbbsd/cal.c
+++ b/mbbsd/cal.c
@@ -394,11 +394,11 @@ int do_give_money(char *id, int uid, int money)
// penalty
if (money < 50) {
- usleep(2000000);
+ usleep(2000000); // 2 sec
} else if (money < 200) {
- usleep(500000);
+ usleep(500000); // 0.5 sec
} else {
- usleep(100000);
+ usleep(100000); // 0.1 sec
}
return 0;
}