Skip to content

Commit

Permalink
Adapt the utility commands to import crates as well
Browse files Browse the repository at this point in the history
  • Loading branch information
abcdefg30 authored and reaperrr committed Apr 17, 2020
1 parent 400102f commit 942dd0e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
Expand Up @@ -85,10 +85,13 @@ void UnpackTileData(MemoryStream ms)
static string[] overlayActors = new string[]
{
// Fences
"sbag", "cycl", "brik", "fenc", "wood", "wood",
"sbag", "cycl", "brik", "fenc", "wood",

// Fields
"v12", "v13", "v14", "v15", "v16", "v17", "v18"
"v12", "v13", "v14", "v15", "v16", "v17", "v18",

// Crates
"wcrate", "scrate"
};

void UnpackOverlayData(MemoryStream ms)
Expand Down
Expand Up @@ -73,10 +73,13 @@ void UnpackTileData(Stream ms)
static string[] overlayActors = new string[]
{
// Fences
"sbag", "cycl", "brik", "fenc", "wood", "wood",
"sbag", "cycl", "brik", "fenc", "wood",

// Fields
"v12", "v13", "v14", "v15", "v16", "v17", "v18"
"v12", "v13", "v14", "v15", "v16", "v17", "v18",

// Crates
"wcrate", "scrate"
};

void ReadOverlay(IniFile file)
Expand Down

0 comments on commit 942dd0e

Please sign in to comment.