Return correct entity type, API breaking change

This commit is contained in:
ZehMatt 2021-08-04 18:04:25 +03:00
parent 5a7d2da6bb
commit af102e391e
No known key found for this signature in database
GPG Key ID: 18CE582C71A225B0
1 changed files with 2 additions and 1 deletions

View File

@ -56,8 +56,9 @@ namespace OpenRCT2::Scripting
case EntityType::Vehicle:
return "car";
case EntityType::Guest:
return "guest";
case EntityType::Staff:
return "peep";
return "staff";
case EntityType::SteamParticle:
return "steam_particle";
case EntityType::MoneyEffect: