Skip to content

Commit 00a5cd0

Browse files
Merge pull request #503 from VolmitSoftware/Development
1.21.1 - Update
2 parents 3036503 + 52c7029 commit 00a5cd0

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ plugins {
2222
id "com.github.johnrengelman.shadow" version "7.1.2"
2323
}
2424

25-
version '1.15.0-1.19.2-1.21'
25+
version '1.15.1-1.19.2-1.21.1'
2626
def apiVersion = '1.19'
2727
def name = getRootProject().getName() // Defined in settings.gradle
2828
def main = 'com.volmit.adapt.Adapt'
29-
def manifoldVersion = '2024.1.10'
29+
def manifoldVersion = '2024.1.30'
3030

3131
// ADD YOURSELF AS A NEW LINE IF YOU WANT YOUR OWN BUILD TASK GENERATED
3232
// ======================== WINDOWS =============================
@@ -141,7 +141,7 @@ allprojects {
141141
implementation "com.github.angeschossen:ChestProtectAPI:3.9.1"
142142
implementation "com.github.TechFortress:GriefPrevention:16.18.1"
143143
implementation 'xyz.xenondevs:particle:1.8.1'
144-
implementation "com.frengor:ultimateadvancementapi-shadeable:2.4.0"
144+
implementation "com.frengor:ultimateadvancementapi-shadeable:2.4.1"
145145
compileOnly 'com.griefdefender:api:2.1.0-SNAPSHOT'
146146
compileOnly 'io.netty:netty-all:4.1.68.Final'
147147

@@ -179,7 +179,7 @@ shadowJar {
179179
include(dependency('systems.manifold:'))
180180
include(dependency('xyz.xenondevs:'))
181181
include(dependency('art.arcane:'))
182-
include(dependency('com.frengor:ultimateadvancementapi-shadeable:2.4.0'))
182+
include(dependency('com.frengor:ultimateadvancementapi-shadeable:'))
183183
}
184184
}
185185

@@ -221,7 +221,7 @@ dependencies {
221221
implementation "com.github.angeschossen:ChestProtectAPI:3.9.1"
222222
implementation "com.github.TechFortress:GriefPrevention:16.18.1"
223223
implementation 'xyz.xenondevs:particle:1.8.1'
224-
implementation "com.frengor:ultimateadvancementapi-shadeable:2.4.0"
224+
implementation "com.frengor:ultimateadvancementapi-shadeable:2.4.1"
225225
compileOnly 'com.griefdefender:api:2.1.0-SNAPSHOT'
226226
compileOnly 'io.netty:netty-all:4.1.68.Final'
227227

src/main/java/com/volmit/adapt/content/adaptation/rift/RiftResist.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public void on(PlayerInteractEvent e) {
8282
switch (hand.getType()) {
8383
case ENDER_EYE, ENDER_PEARL -> {
8484
xp(p, 3);
85-
riftResistStackAdd(p, 80, 10);
85+
riftResistStackAdd(p, getConfig().duration, getConfig().amplitude);
8686
}
8787
}
8888
}
@@ -111,6 +111,8 @@ protected static class Config {
111111
int baseCost = 3;
112112
double costFactor = 1;
113113
int maxLevel = 1;
114+
int amplitude = 1;
115+
int duration = 80;
114116
int initialCost = 5;
115117
}
116118
}

src/main/resources/plugin.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ permissions:
2929
adapt.idontknowwhatimdoingiswear:
3030
description: This is for the Adapt Testing command DEVELOPERS ONLY
3131
default: op
32+
adapt.listboosts:
33+
description: Allows for you to view the boosts on a player
34+
default: op
3235
adapt.opengui:
3336
description: Open the GUI without needing a Bookshelf
3437
default: op
@@ -356,6 +359,9 @@ permissions:
356359
adapt.blacklist.riftresist:
357360
description: Blacklist the adaptation RiftResist
358361
default: false
362+
adapt.blacklist.riftvisage:
363+
description: Blacklist the adaptation RiftVisage
364+
default: false
359365
adapt.blacklist.seaborne:
360366
description: Blacklist the skill Seaborne
361367
default: false

0 commit comments

Comments
 (0)