Skip to content

Commit

Permalink
Tile Esp Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
IntelSDM committed Aug 26, 2023
1 parent 12642e5 commit 1695c3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 7DTD/Esp/Tiles.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void OnGUI()
continue;
int distance = (int)Vector3.Distance(Globals.MainCamera.transform.position, worldpos);
string distancestr = Globals.Config.Tiles.Distance ? $"({distance.ToString()}m)" : "";
string namestr = Globals.Config.Tiles.Name ? $"{tile.blockValue.Block.GetBlockName()}" : "";
string namestr = Globals.Config.Tiles.Name ? $"{tile.blockValue.Block.GetLocalizedBlockName()}" : "";
if (distance > Globals.Config.Tiles.MaxDistance)
continue;

Expand Down

0 comments on commit 1695c3a

Please sign in to comment.