Merge pull request #6203 from deathbeam/remove-full-description

Remove full clue description from Hot/Cold and Cryptic Clues
This commit is contained in:
Tomas Slusny
2018-10-29 14:05:00 +01:00
committed by GitHub
2 changed files with 0 additions and 14 deletions

View File

@@ -338,11 +338,6 @@ public class CrypticClue extends ClueScroll implements TextClueScroll, NpcClueSc
public void makeOverlayHint(PanelComponent panelComponent, ClueScrollPlugin plugin)
{
panelComponent.getChildren().add(TitleComponent.builder().text("Cryptic Clue").build());
panelComponent.getChildren().add(LineComponent.builder().left("Clue:").build());
panelComponent.getChildren().add(LineComponent.builder()
.left(getText())
.leftColor(TITLED_CONTENT_COLOR)
.build());
if (getNpc() != null)
{

View File

@@ -100,14 +100,6 @@ public class HotColdClue extends ClueScroll implements LocationClueScroll, Locat
// strange device has not been tested yet, show how to get it
if (lastWorldPoint == null && location == null)
{
panelComponent.getChildren().add(LineComponent.builder()
.left("Clue:")
.build());
panelComponent.getChildren().add(LineComponent.builder()
.left(getText())
.leftColor(TITLED_CONTENT_COLOR)
.build());
if (getNpc() != null)
{
panelComponent.getChildren().add(LineComponent.builder()
@@ -137,7 +129,6 @@ public class HotColdClue extends ClueScroll implements LocationClueScroll, Locat
for (HotColdLocation hotColdLocation : digLocations)
{
Rectangle2D r = hotColdLocation.getRect();
HotColdArea hotColdArea = hotColdLocation.getHotColdArea();
if (locationCounts.containsKey(hotColdArea))