1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-22 14:24:33 +01:00

Fix dropdown separator fallback code

This commit is contained in:
mrmbernardi
2025-09-01 04:43:01 +10:00
committed by GitHub
parent 337ac9f2b4
commit fc0912d0da

View File

@@ -126,7 +126,7 @@ namespace OpenRCT2::Scripting
{
auto type = ProcessString(d["type"]);
// This type was misspelt between 2020 and 2025.
if (type == "separator" || type == "separator")
if (type == "separator" || type == "seperator")
{
auto text = ProcessString(d["text"]);
result = ListViewItem(text);