Bounty Hunter Eyes Fix

This commit is contained in:
2024-03-06 20:51:21 -06:00
parent b9ec8fd540
commit 5c46af3c52
+12 -3
View File
@@ -237,10 +237,19 @@ public class PowersBase {
this.costRamp = rs.getFloat("costRamp");
this.castTime = rs.getFloat("castTime");
this.castTimeRamp = rs.getFloat("initRamp");
this.cooldown = rs.getFloat("cooldown");
this.recycleTime = rs.getFloat("recycleTime");
if(rs.getInt("token") == 429420458){//BH detect hidden
this.cooldown = 0;
this.recycleTime = 302;
}else {
this.cooldown = rs.getFloat("cooldown");
this.recycleTime = rs.getFloat("recycleTime");
}
this.recycleRamp = rs.getFloat("recycleRamp");
this.maxTrains = rs.getInt("maxTrains");
if(rs.getInt("token") == 429420458){//BH detect hidden
this.maxTrains = 40;
} else {
this.maxTrains = rs.getInt("maxTrains");
}
this.hateValue = rs.getFloat("hateValue");
this.hateRamp = rs.getFloat("hateRamp");
ct = rs.getString("unknown06").trim();