This commit is contained in:
dhain 2022-05-19 16:13:53 +02:00
parent 7a04d79aba
commit 470aeff3f3
4 changed files with 3659 additions and 3 deletions

View file

@ -17,7 +17,7 @@ namespace Tiles
public new BaseTile Clicked(UsableItem usable) {
base.Clicked(usable);
BaseTile rv = null;
if (usable.GetType() == typeof(Items.Hoe))
if (usable.displayName == "Hoe")
{
rv = new FarmlandTile();
}