Skip to content

Commit

Permalink
Merge pull request #503 from VolmitSoftware/Development
Browse files Browse the repository at this point in the history
1.21.1 - Update
  • Loading branch information
NextdoorPsycho authored Aug 28, 2024
2 parents 3036503 + 52c7029 commit 00a5cd0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ plugins {
id "com.github.johnrengelman.shadow" version "7.1.2"
}

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

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

Expand Down Expand Up @@ -179,7 +179,7 @@ shadowJar {
include(dependency('systems.manifold:'))
include(dependency('xyz.xenondevs:'))
include(dependency('art.arcane:'))
include(dependency('com.frengor:ultimateadvancementapi-shadeable:2.4.0'))
include(dependency('com.frengor:ultimateadvancementapi-shadeable:'))
}
}

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void on(PlayerInteractEvent e) {
switch (hand.getType()) {
case ENDER_EYE, ENDER_PEARL -> {
xp(p, 3);
riftResistStackAdd(p, 80, 10);
riftResistStackAdd(p, getConfig().duration, getConfig().amplitude);
}
}
}
Expand Down Expand Up @@ -111,6 +111,8 @@ protected static class Config {
int baseCost = 3;
double costFactor = 1;
int maxLevel = 1;
int amplitude = 1;
int duration = 80;
int initialCost = 5;
}
}
6 changes: 6 additions & 0 deletions src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ permissions:
adapt.idontknowwhatimdoingiswear:
description: This is for the Adapt Testing command DEVELOPERS ONLY
default: op
adapt.listboosts:
description: Allows for you to view the boosts on a player
default: op
adapt.opengui:
description: Open the GUI without needing a Bookshelf
default: op
Expand Down Expand Up @@ -356,6 +359,9 @@ permissions:
adapt.blacklist.riftresist:
description: Blacklist the adaptation RiftResist
default: false
adapt.blacklist.riftvisage:
description: Blacklist the adaptation RiftVisage
default: false
adapt.blacklist.seaborne:
description: Blacklist the skill Seaborne
default: false
Expand Down

0 comments on commit 00a5cd0

Please sign in to comment.