Skip to content

Commit 4e30b83

Browse files
Merge pull request #444 from VolmitSoftware/Development
1.20.1 inital update
2 parents 80ba992 + 1810f4c commit 4e30b83

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

build.gradle

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

26-
version '1.11.0-1.20.0'
27-
def nmsVersion = "1.20" //[NMS]
26+
version '1.11.1-1.20.1'
27+
def nmsVersion = "1.20.1" //[NMS]
2828
def apiVersion = '1.20'
2929
def specialSourceVersion = '1.11.0' //[NMS]
30-
def spigotJarVersion = '1.20-R0.1-SNAPSHOT' //[NMS]
30+
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'
3333
def manifoldVersion = '2023.1.10'
@@ -119,8 +119,8 @@ dependencies {
119119
// Provided or Classpath
120120
compileOnly 'org.projectlombok:lombok:1.18.24'
121121
annotationProcessor 'org.projectlombok:lombok:1.18.24'
122-
implementation 'org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT' //[NMS]
123-
implementation 'org.bukkit:craftbukkit:1.20-R0.1-SNAPSHOT' //[NMS]
122+
implementation 'org.spigotmc:spigot-api:1.20.1-R0.1-SNAPSHOT' //[NMS]
123+
implementation 'org.bukkit:craftbukkit:1.20.1-R0.1-SNAPSHOT' //[NMS]
124124

125125
// Cancer
126126
implementation 'art.arcane:Amulet:22.7.18'

src/main/java/com/volmit/adapt/nms/NMS.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class NMS {
3131

3232
private static final Map<String, Impl> VERSIONS = new ImmutableMap.Builder<String, Impl>()
33-
.put("1.20", new NMS_1_20())
33+
.put("1.20.1", new NMS_1_20_1())
3434
.build();
3535

3636
private static String version;

src/main/java/com/volmit/adapt/nms/NMS_1_20.java renamed to src/main/java/com/volmit/adapt/nms/NMS_1_20_1.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
import java.io.IOException;
3636
import java.util.Base64;
3737

38-
public class NMS_1_20 implements NMS.Impl {
38+
public class NMS_1_20_1 implements NMS.Impl {
3939

4040
@Override
4141
public String serializeStack(ItemStack is) {

0 commit comments

Comments
 (0)