2
0
Fork 0
mirror of https://github.com/GTA-ASM/SanAndreasUnity synced 2025-02-17 05:18:27 +00:00

remove quotes from enex name

This commit is contained in:
in0finite 2019-10-23 00:09:28 +02:00
parent eedd411520
commit cb46cf795e

View file

@ -37,6 +37,7 @@ namespace SanAndreasUnity.Importing.Items.Placements
TargetInterior = GetInt(index++);
Flags = GetInt(index++);
Name = GetString(index++);
Name = Name.Substring(1, Name.Length - 2); // remove quotes
SkyColorType = GetInt(index++);
NumPedsToSpawn = GetInt(index++);
TimeOn = GetInt(index++);