瀏覽代碼

bug修复

wangb 1 月之前
父節點
當前提交
840e8d6452
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      runeconomy-xk/src/main/java/com/gyee/runeconomy/model/TemperatureTagInfo.java

+ 1 - 1
runeconomy-xk/src/main/java/com/gyee/runeconomy/model/TemperatureTagInfo.java

@@ -34,7 +34,7 @@ public class TemperatureTagInfo extends TagInfo {
     }
 
     public TemperatureStatus getStatus() {
-        if (this.getValue() >= 850) {
+        if (this.getValue() >= 2000) {
             return TemperatureStatus.BadPoint;
         }
         if (maxval != -1 && this.getValue() >= maxval) {