Added TIME_ELEMENT_PERMANENTLY to output

Added TIME_ELEMENT_PERMANENTLY to output.

Ps.
This is supposed to be used?
This commit is contained in:
Cleverson 2020-07-18 02:52:20 -03:00 committed by GitHub
parent 0366323d1b
commit 1c689bc049
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,4 +97,8 @@ stock get_time_length(id, unitCnt, type, output[], outputLen)
case 4: formatex(output, outputLen, "%s, %s, %s, %s %L %s", timeElement[0], timeElement[1], timeElement[2], timeElement[3], id, "TIME_ELEMENT_AND", timeElement[4]); case 4: formatex(output, outputLen, "%s, %s, %s, %s %L %s", timeElement[0], timeElement[1], timeElement[2], timeElement[3], id, "TIME_ELEMENT_AND", timeElement[4]);
} }
} }
else if (unitCnt == 0)
{
formatex(output, outputLen, "%L", id, "TIME_ELEMENT_PERMANENTLY");
}
} }