summaryrefslogtreecommitdiff
path: root/npc/functions
diff options
context:
space:
mode:
authorgumi <mekolat@users.noreply.github.com>2017-01-07 18:46:32 -0500
committergumi <mekolat@users.noreply.github.com>2017-01-07 18:46:32 -0500
commit3dc7151b769b8c9d0cbef6b8f2fca3acbc1e7e59 (patch)
tree4e5dd6c9ea7d6d4a6ac47f7ceb7b158d61af93f3 /npc/functions
parent2a7dc535a68c325b35f11ea3ce52e8015cd88650 (diff)
downloadserverdata-3dc7151b769b8c9d0cbef6b8f2fca3acbc1e7e59.tar.gz
serverdata-3dc7151b769b8c9d0cbef6b8f2fca3acbc1e7e59.tar.bz2
serverdata-3dc7151b769b8c9d0cbef6b8f2fca3acbc1e7e59.tar.xz
serverdata-3dc7151b769b8c9d0cbef6b8f2fca3acbc1e7e59.zip
patch for fuzzytime precision (missing the `and`)
Diffstat (limited to 'npc/functions')
-rw-r--r--npc/functions/time.txt22
1 files changed, 10 insertions, 12 deletions
diff --git a/npc/functions/time.txt b/npc/functions/time.txt
index b96431e4..c5135544 100644
--- a/npc/functions/time.txt
+++ b/npc/functions/time.txt
@@ -49,18 +49,18 @@ function script FuzzyTime {
.@diff = max(1, .@diff);
- if (.@diff >= .@unit_year && .@s < .@precision)
+ if (.@diff >= .@unit_year)
{
.@years = (.@diff / .@unit_year);
- .@diff = (.@diff % .@unit_year);
+ .@diff = (.@s + 1 == .@precision ? 0 : (.@diff % .@unit_year));
.@ret$ += .@years + " " + getd(".@unit_year" + (.@years > 1 ? "s$" : "$"));
++.@s;
}
- if (.@diff >= .@unit_day && .@s < .@precision)
+ if (.@diff >= .@unit_day)
{
.@days = (.@diff / .@unit_day);
- .@diff = (.@diff % .@unit_day);
+ .@diff = (.@s + 1 == .@precision ? 0 : (.@diff % .@unit_day));
if (.@ret$ != "")
{
@@ -71,10 +71,10 @@ function script FuzzyTime {
++.@s;
}
- if (.@diff >= .@unit_hour && .@s < .@precision)
+ if (.@diff >= .@unit_hour)
{
.@hours = (.@diff / .@unit_hour);
- .@diff = (.@diff % .@unit_hour);
+ .@diff = (.@s + 1 == .@precision ? 0 : (.@diff % .@unit_hour));
if (.@ret$ != "")
{
@@ -85,10 +85,10 @@ function script FuzzyTime {
++.@s;
}
- if (.@diff >= .@unit_minute && .@s < .@precision)
+ if (.@diff >= .@unit_minute)
{
.@minutes = (.@diff / .@unit_minute);
- .@diff = (.@diff % .@unit_minute);
+ .@diff = (.@s + 1 == .@precision ? 0 : (.@diff % .@unit_minute));
if (.@ret$ != "")
{
@@ -99,18 +99,16 @@ function script FuzzyTime {
++.@s;
}
- if (.@diff >= .@unit_second && .@s < .@precision)
+ if (.@diff >= .@unit_second)
{
.@seconds = (.@diff / .@unit_second);
- .@diff = (.@diff % .@unit_second);
if (.@ret$ != "")
{
- .@ret$ += .@diff > 0 ? ", " : (.@s >= 2 ? ", " : " ") + l("and ");
+ .@ret$ += (.@s >= 2 ? ", " : " ") + l("and ");
}
.@ret$ += .@seconds + " " + getd(".@unit_second" + (.@seconds > 1 ? "s$" : "$"));
- ++.@s;
}
if (.@past > 0 && !(.@options & 1))