Exemplo n.º 1
0
 public void TerrainDig()
 {
     if (_terrainManager.CreateDigging(_location, true))
     {
         _cache.Add(new CacheContent()
         {
             Location   = _location,
             ObjectType = "Digging"
         }
                    );
         _terrainManager.TerrainDropItem(_location, _terrain.DropChance, _terrain.DropItems);
     }
 }