Merge pull request #9838 from Hydrox6/clues-emote-hint-order
clues: fix emote hint ordering
This commit is contained in:
@@ -216,12 +216,6 @@ public class EmoteClue extends ClueScroll implements TextClueScroll, LocationClu
|
|||||||
.leftColor(TITLED_CONTENT_COLOR)
|
.leftColor(TITLED_CONTENT_COLOR)
|
||||||
.build());
|
.build());
|
||||||
|
|
||||||
panelComponent.getChildren().add(LineComponent.builder().left("Location:").build());
|
|
||||||
panelComponent.getChildren().add(LineComponent.builder()
|
|
||||||
.left(getLocationName())
|
|
||||||
.leftColor(TITLED_CONTENT_COLOR)
|
|
||||||
.build());
|
|
||||||
|
|
||||||
if (getSecondEmote() != null)
|
if (getSecondEmote() != null)
|
||||||
{
|
{
|
||||||
panelComponent.getChildren().add(LineComponent.builder()
|
panelComponent.getChildren().add(LineComponent.builder()
|
||||||
@@ -230,6 +224,12 @@ public class EmoteClue extends ClueScroll implements TextClueScroll, LocationClu
|
|||||||
.build());
|
.build());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
panelComponent.getChildren().add(LineComponent.builder().left("Location:").build());
|
||||||
|
panelComponent.getChildren().add(LineComponent.builder()
|
||||||
|
.left(getLocationName())
|
||||||
|
.leftColor(TITLED_CONTENT_COLOR)
|
||||||
|
.build());
|
||||||
|
|
||||||
if (itemRequirements.length > 0)
|
if (itemRequirements.length > 0)
|
||||||
{
|
{
|
||||||
Client client = plugin.getClient();
|
Client client = plugin.getClient();
|
||||||
|
|||||||
Reference in New Issue
Block a user