We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35fd92e commit 8280468Copy full SHA for 8280468
pom.xml
@@ -6,7 +6,7 @@
6
7
<groupId>to.us.tf</groupId>
8
<artifactId>AbsorptionShields</artifactId>
9
- <version>1.1</version>
+ <version>1.2.1</version>
10
<properties>
11
<maven.compiler.source>1.8</maven.compiler.source>
12
<maven.compiler.target>1.8</maven.compiler.target>
src/main/java/to/us/tf/absorptionshields/shield/Shield.java
@@ -34,6 +34,8 @@ public Shield(Shield template)
34
this.maxShieldStrength = template.maxShieldStrength;
35
this.regenTime = template.regenTime;
36
this.regenRate = template.regenRate;
37
+
38
+ this.regenCounter = regenTime;
39
}
40
41
public void resetRegenCounter()
0 commit comments