From eebfb83aa206de90df220d2629812a026795aa4d Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Sun, 24 Mar 2024 15:53:26 +0000 Subject: [PATCH] Fix 2fd9096: Label for fruit incorrectly changed to `FRUI` from `FRUT`. (#12367) --- src/cargo_type.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo_type.h b/src/cargo_type.h index 3b0380f429..27dc09cbe9 100644 --- a/src/cargo_type.h +++ b/src/cargo_type.h @@ -47,7 +47,7 @@ static constexpr CargoLabel CT_FOOD = CargoLabel{'FOOD'}; /* Tropic */ static constexpr CargoLabel CT_RUBBER = CargoLabel{'RUBR'}; -static constexpr CargoLabel CT_FRUIT = CargoLabel{'FRUI'}; +static constexpr CargoLabel CT_FRUIT = CargoLabel{'FRUT'}; static constexpr CargoLabel CT_MAIZE = CargoLabel{'MAIZ'}; static constexpr CargoLabel CT_COPPER_ORE = CargoLabel{'CORE'}; static constexpr CargoLabel CT_WATER = CargoLabel{'WATR'};