diff --git a/docs/script-additions.html b/docs/script-additions.html
index 16bce206fc..28e5bb5a2c 100644
--- a/docs/script-additions.html
+++ b/docs/script-additions.html
@@ -10,7 +10,7 @@
table { border-collapse: collapse; empty-cells: show; }
.code { font-family: "Courier New", Courier, mono; color: darkgreen; }
.methodtext{ margin-left: 3em; }
- .indent { margin-left: 1em; }
+ .indent { margin-left: 1em; margin-bottom: 0.5em; }
dt { font-weight: bold; }
@@ -27,7 +27,33 @@
Additional Static Public Member Functions:
static int32 GetDayLengthFactor ()
-
Get current day length factor
+
Get current day length factor.
+
+
+
static bool IsTimeShownInMinutes ()
+
Get whether time is shown in minutes in the game settings.
+
This ignores the "Use client time settings instead of savegame time settings" setting.
+
+
+
static int32 GetTicksPerMinute ()
+
Get the ticks per minutes in the game settings.
+
This ignores the "Use client time settings instead of savegame time settings" setting.
+
+
+
static DateTicksScaled GetCurrentScaledDateTicks ()
+
Get the current scaled date ticks.
+
This increments at the same rate regardless of the day length factor.
+
Changing the day length factor will also change this value.
+
+
+
static int32 GetHour (DateTicksScaled ticks)
+
Get the hour of the given scaled date ticks value.
+
This ignores the "Use client time settings instead of savegame time settings" setting.
+
+
+
static int32 GetMinute (DateTicksScaled ticks)
+
Get the minute of the given scaled date ticks value.
+
This ignores the "Use client time settings instead of savegame time settings" setting.
@@ -36,8 +62,8 @@
Additional Static Public Member Functions:
static bool BuildRiver (TileIndex tile)
-
Builds a river on tile (subject to permissions/settings)
-
All other details are the same as BuildCanal
+
Builds a river on tile (subject to permissions/settings).
+
All other details are the same as BuildCanal.