Skip to content

Commit

Permalink
v+
Browse files Browse the repository at this point in the history
  • Loading branch information
NextdoorPsycho committed Aug 31, 2023
1 parent 05dee9c commit f87554b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ plugins {
id "de.undercouch.download" version "5.0.1"
}

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

// ADD YOURSELF AS A NEW LINE IF YOU WANT YOUR OWN BUILD TASK GENERATED
// ======================== WINDOWS =============================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ && hasAdaptation(p)) {
} catch (InterruptedException ex) {
throw new RuntimeException(ex);
}
Adapt.verbose("[POST] Current Health: " + tam.getHealth() + " Max Health: " + mh);
// Adapt.verbose("[POST] Current Health: " + tam.getHealth() + " Max Health: " + mh);

});

Expand Down Expand Up @@ -112,7 +112,7 @@ private double getRegenSpeed(int level) {

@Override
public void onTick() {
for (UUID i : lastDamage.k()) {
for (UUID i : lastDamage.keySet()) {
if (M.ms() - lastDamage.get(i) > 8000) {
lastDamage.remove(i);
}
Expand Down

0 comments on commit f87554b

Please sign in to comment.