Update ExaminePlugin.java

This commit is contained in:
Kyleeld
2019-05-08 10:11:49 +01:00
committed by GitHub
parent 4c1c604f66
commit 9938304703

View File

@@ -26,6 +26,7 @@ package net.runelite.client.plugins.examine;
import com.google.common.cache.Cache; import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder; import com.google.common.cache.CacheBuilder;
import java.io.IOException;
import java.time.Instant; import java.time.Instant;
import java.util.ArrayDeque; import java.util.ArrayDeque;
import java.util.Deque; import java.util.Deque;
@@ -356,11 +357,11 @@ public class ExaminePlugin extends Plugin
} }
message message
.append(ChatColorType.NORMAL) .append(ChatColorType.NORMAL)
.append(" GE ") .append(" GE ")
.append(ChatColorType.HIGHLIGHT) .append(ChatColorType.HIGHLIGHT)
.append(StackFormatter.formatNumber(gePrice * quantity)) .append(StackFormatter.formatNumber(gePrice * quantity))
.append(ChatColorType.NORMAL) .append(ChatColorType.NORMAL)
.append(" OSB ") .append(" OSB ")
.append(ChatColorType.HIGHLIGHT) .append(ChatColorType.HIGHLIGHT)
.append(StackFormatter.formatNumber(osbresult.getOverall_average() * quantity)); .append(StackFormatter.formatNumber(osbresult.getOverall_average() * quantity));