Changed SubCell to byte

This commit is contained in:
teinarss
2018-08-05 13:08:43 +02:00
committed by Paul Chote
parent 52a7d39e51
commit e353c8c176
7 changed files with 15 additions and 10 deletions

View File

@@ -415,7 +415,7 @@ namespace OpenRA.Mods.Common.UtilityCommands
initDict.Add(new FacingInit(255 - facing));
if (section == "INFANTRY")
actor.Add(new SubCellInit(Exts.ParseIntegerInvariant(parts[4])));
actor.Add(new SubCellInit(Exts.ParseByte(parts[4])));
var actorCount = map.ActorDefinitions.Count;