examine: Fix prices (#1046)

This commit is contained in:
Owain van Brakel
2019-07-19 15:15:16 +02:00
committed by Kyleeld
parent 3fd290b2a8
commit 5fe8f3d01e

View File

@@ -400,12 +400,33 @@ public class ExaminePlugin extends Plugin
.append(ChatColorType.NORMAL) .append(ChatColorType.NORMAL)
.append("ea)"); .append("ea)");
} }
message
.append(ChatColorType.NORMAL)
.append(" HA value ")
.append(ChatColorType.HIGHLIGHT)
.append(StackFormatter.formatNumber(alchPrice * finalQuantity));
if (finalQuantity > 1)
{
message
.append(ChatColorType.NORMAL)
.append(" (")
.append(ChatColorType.HIGHLIGHT)
.append(StackFormatter.formatNumber(alchPrice))
.append(ChatColorType.NORMAL)
.append("ea)");
}
chatMessageManager.queue(QueuedMessage.builder()
.type(ChatMessageType.ITEM_EXAMINE)
.runeLiteFormattedMessage(message.build())
.build());
}, },
(e) -> log.error(e.toString()) (e) -> log.error(e.toString())
); );
} }
else
if (alchPrice > 0)
{ {
message message
.append(ChatColorType.NORMAL) .append(ChatColorType.NORMAL)
@@ -423,12 +444,12 @@ public class ExaminePlugin extends Plugin
.append(ChatColorType.NORMAL) .append(ChatColorType.NORMAL)
.append("ea)"); .append("ea)");
} }
}
chatMessageManager.queue(QueuedMessage.builder() chatMessageManager.queue(QueuedMessage.builder()
.type(ChatMessageType.ITEM_EXAMINE) .type(ChatMessageType.ITEM_EXAMINE)
.runeLiteFormattedMessage(message.build()) .runeLiteFormattedMessage(message.build())
.build()); .build());
}
} }
} }