Rename points to reputation for player view

This commit is contained in:
Patrick
2022-07-14 14:45:21 +04:00
parent 137c598c52
commit d8725fb3a8
4 changed files with 8 additions and 12 deletions

View File

@@ -91,11 +91,11 @@ public class FoundryOverlay2D extends OverlayPanel
);
}
int points = plugin.getReputationTracker().getShopPoints();
int points = plugin.getPointsTracker().getShopPoints();
if (config.drawShopPoints())
{
panelComponent.getChildren().add(
LineComponent.builder().left("Points").right(points + "").build()
LineComponent.builder().left("Reputation").right(points + "").build()
);
}