summaryrefslogtreecommitdiff
path: root/src/newgrf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/newgrf.cpp')
-rw-r--r--src/newgrf.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index 15fee8335..110182169 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -3648,6 +3648,14 @@ bool GetGlobalVariable(byte param, uint32 *value)
*value = _settings_game.difficulty.diff_level;
return true;
+ case 0x23: // long format date
+ *value = _date;
+ return true;
+
+ case 0x24: // long format year
+ *value = _cur_year;
+ return true;
+
default: return false;
}
}