WaterTile.cs + Shovel.asset

This commit is contained in:
s-prechtl 2022-06-08 11:44:22 +02:00
parent efc7a3deaf
commit 1a12d986c4
6 changed files with 72 additions and 15 deletions

View file

@ -31,7 +31,7 @@ namespace Tiles
public virtual BaseTile Clicked(UsableItem usable)
{
Debug.Log(usable.ToString() + " used on " + this.ToString());
Debug.Log(usable + " used on " + this);
return null;
}