multiple values for same tile
parent
98b4247cbb
commit
4082cc033b
|
@ -54,14 +54,35 @@ namespace stardew_access.Features
|
||||||
if (tile.Value == null)
|
if (tile.Value == null)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
JToken? tileX = tile.Value["x"];
|
JToken? tileXArray = tile.Value["x"];
|
||||||
JToken? tileY = tile.Value["y"];
|
JToken? tileYArray = tile.Value["y"];
|
||||||
JToken? tileType = tile.Value["type"];
|
JToken? tileType = tile.Value["type"];
|
||||||
|
|
||||||
if (tileX == null || tileY == null || tileType == null)
|
if (tileXArray == null || tileYArray == null || tileType == null)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (short.Parse(tileX.ToString()) == x && short.Parse(tileY.ToString()) == y)
|
bool isXPresent = false;
|
||||||
|
bool isYPresent = false;
|
||||||
|
|
||||||
|
foreach (var item in tileXArray)
|
||||||
|
{
|
||||||
|
if (short.Parse(item.ToString()) == x)
|
||||||
|
{
|
||||||
|
isXPresent = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (var item in tileYArray)
|
||||||
|
{
|
||||||
|
if (short.Parse(item.ToString()) == y)
|
||||||
|
{
|
||||||
|
isYPresent = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isXPresent && isYPresent)
|
||||||
return (tile.Key, CATEGORY.FromString(tileType.ToString()));
|
return (tile.Key, CATEGORY.FromString(tileType.ToString()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue