Browse Source

bug修复

wangb 1 month ago
parent
commit
840e8d6452

+ 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) {