Skip to content

Commit f87554b

Browse files
v+
1 parent 05dee9c commit f87554b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ plugins {
2323
id "de.undercouch.download" version "5.0.1"
2424
}
2525

26-
version '1.13.0-1.20.1'
26+
version '1.13.1-1.20.1'
2727
def nmsVersion = "1.20.1" //[NMS]
2828
def apiVersion = '1.20'
2929
def specialSourceVersion = '1.11.0' //[NMS]
3030
def spigotJarVersion = '1.20.1-R0.1-SNAPSHOT' //[NMS]
3131
def name = getRootProject().getName() // Defined in settings.gradle
3232
def main = 'com.volmit.adapt.Adapt'
33-
def manifoldVersion = '2023.1.11'
33+
def manifoldVersion = '2023.1.15'
3434

3535
// ADD YOURSELF AS A NEW LINE IF YOU WANT YOUR OWN BUILD TASK GENERATED
3636
// ======================== WINDOWS =============================

src/main/java/com/volmit/adapt/content/adaptation/taming/TamingHealthRegeneration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ && hasAdaptation(p)) {
8484
} catch (InterruptedException ex) {
8585
throw new RuntimeException(ex);
8686
}
87-
Adapt.verbose("[POST] Current Health: " + tam.getHealth() + " Max Health: " + mh);
87+
// Adapt.verbose("[POST] Current Health: " + tam.getHealth() + " Max Health: " + mh);
8888

8989
});
9090

@@ -112,7 +112,7 @@ private double getRegenSpeed(int level) {
112112

113113
@Override
114114
public void onTick() {
115-
for (UUID i : lastDamage.k()) {
115+
for (UUID i : lastDamage.keySet()) {
116116
if (M.ms() - lastDamage.get(i) > 8000) {
117117
lastDamage.remove(i);
118118
}

0 commit comments

Comments
 (0)