mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-18 04:23:20 +01:00
Fix mistake in ObjectRepository::Create
Objects that could not be loaded were being returned with a success status causing blanks in the index file.
This commit is contained in:
@@ -111,7 +111,7 @@ public:
|
||||
}
|
||||
else
|
||||
{
|
||||
return std::make_tuple(true, ObjectRepositoryItem());
|
||||
return std::make_tuple(false, ObjectRepositoryItem());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user