Change custom_gametime contrib to start days/weeks/months from 1 instead of from 0. Resolve #1753

This commit is contained in:
Griatch 2021-11-04 00:15:27 +01:00
parent 58f86fd3d7
commit 2df0b9c943
4 changed files with 34 additions and 8 deletions

View file

@ -216,7 +216,10 @@ TIME_UNITS = {
```
Notice we have set a time epoch of 0. Using a custom calendar, we will come up with a nice display
of time on our own. In our case the game time starts at year 0, month 0, day 0, and at midnight.
of time on our own. In our case the game time starts at year 0, month 1, day 1, and at midnight.
> Year, hour, minute and sec starts from 0, month, week and day starts from 1, this makes them
> behave consistently with the standard time.
Note that while we use "month", "week" etc in the settings, your game may not use those terms in-
game, instead referring to them as "cycles", "moons", "sand falls" etc. This is just a matter of you