diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-10-28 01:36:12 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-10-28 01:36:12 -0300 |
commit | 75479db52de54baba8056b3d548d624343a8bc9a (patch) | |
tree | 378a213efc9dc0302a7e5346cfb17f1227652244 /npc/functions | |
parent | 2079474e3cfd450e3f19f26904fbb9766dc593ca (diff) | |
download | serverdata-75479db52de54baba8056b3d548d624343a8bc9a.tar.gz serverdata-75479db52de54baba8056b3d548d624343a8bc9a.tar.bz2 serverdata-75479db52de54baba8056b3d548d624343a8bc9a.tar.xz serverdata-75479db52de54baba8056b3d548d624343a8bc9a.zip |
MAX_CYCLE_PC, a new constant for getunits
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/weather.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/weather.txt b/npc/functions/weather.txt index 4294b7d3d..592949dd9 100644 --- a/npc/functions/weather.txt +++ b/npc/functions/weather.txt @@ -193,7 +193,7 @@ OnMinute45: // It's 2 messages every 3 hours. (r7.5) // Player might be on cave, and this will help them tracking time. if (is_night() && !$@WEATHER_NIGHT) { - .@c = getunits(BL_PC, .@players, 20); + .@c = getunits(BL_PC, .@players, MAX_CYCLE_PC); for (.@i = 0; .@i < .@c; .@i++) { message(.@players[.@i], "The night falls."); } @@ -202,7 +202,7 @@ OnMinute45: donpcevent("@exprate::OnReload"); donpcevent("@droprate::OnReload"); } else if (!is_night() && $@WEATHER_NIGHT) { - .@c = getunits(BL_PC, .@players, 20); + .@c = getunits(BL_PC, .@players, MAX_CYCLE_PC); for (.@i = 0; .@i < .@c; .@i++) { message(.@players[.@i], "The day rises."); } |