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