From 936758e0bbb8ec866ed4ab941297b5c853bd3f53 Mon Sep 17 00:00:00 2001 From: Andy Date: Thu, 7 Nov 2024 19:51:51 +0000 Subject: [PATCH] Change: cargo class bits 13 and 14 now define potable and non-potable (OpenTTD #12979) --- nml/global_constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nml/global_constants.py b/nml/global_constants.py index 9a062ab3..89baf075 100644 --- a/nml/global_constants.py +++ b/nml/global_constants.py @@ -59,6 +59,8 @@ def constant_number(name, info, pos): "CC_POWDERIZED" : 11, "CC_NON_POURABLE" : 12, "CC_NEO_BULK" : 12, + "CC_POTABLE" : 13, + "CC_NON_POTABLE" : 14, "CC_SPECIAL" : 15, "NO_CARGO_CLASS" : 0, "ALL_NORMAL_CARGO_CLASSES" : 0x1FFF,