summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/newgrf.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index 9d8004428..fb24a9637 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -4060,7 +4060,8 @@ static void ParamSet(byte *buf, int len)
break;
case 0x0B: // Cargo
- src1 = PerformGRM(_grm_cargos, NUM_CARGO, count, op, target, "cargos");
+ /* There are two ranges: one for cargo IDs and one for cargo bitmasks */
+ src1 = PerformGRM(_grm_cargos, NUM_CARGO * 2, count, op, target, "cargos");
if (_skip_sprites == -1) return;
break;