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:
@@ -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];
|
||||
}
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user