1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-04 21:52:55 +01:00

[SCRIPT] Fix wooden b supports

This commit is contained in:
Marijn van der Werf
2016-10-13 20:13:59 +02:00
parent 3172b2fbf3
commit 8eb2e37a54
2 changed files with 2 additions and 2 deletions

View File

@@ -724,7 +724,7 @@ private:
"metal_a_supports_paint_setup",
"metal_b_supports_paint_setup",
"wooden_a_supports_paint_setup",
"wooden_a_supports_paint_setup",
"wooden_b_supports_paint_setup",
};
return functionNames[function];
}

View File

@@ -400,7 +400,7 @@ static void printFunctionCall(utf8string out, size_t len, function_call call) {
snprintf(out, len, "wooden_a_supports_paint_setup(%d, %d, %d, %s)", call.supports.type, call.supports.special, call.supports.height, imageId);
return;
case SUPPORTS_WOOD_B:
snprintf(out, len, "wooden_a_supports_paint_setup(%d, %d, %d, %s)", call.supports.type, call.supports.special, call.supports.height, imageId);
snprintf(out, len, "wooden_b_supports_paint_setup(%d, %d, %d, %s)", call.supports.type, call.supports.special, call.supports.height, imageId);
return;
case SUPPORTS_METAL_A: