Skip to content

Commit

Permalink
Merge pull request #444 from VolmitSoftware/Development
Browse files Browse the repository at this point in the history
1.20.1 inital update
  • Loading branch information
NextdoorPsycho authored Jun 15, 2023
2 parents 80ba992 + 1810f4c commit 4e30b83
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ plugins {
id "de.undercouch.download" version "5.0.1"
}

version '1.11.0-1.20.0'
def nmsVersion = "1.20" //[NMS]
version '1.11.1-1.20.1'
def nmsVersion = "1.20.1" //[NMS]
def apiVersion = '1.20'
def specialSourceVersion = '1.11.0' //[NMS]
def spigotJarVersion = '1.20-R0.1-SNAPSHOT' //[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.10'
Expand Down Expand Up @@ -119,8 +119,8 @@ dependencies {
// Provided or Classpath
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
implementation 'org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT' //[NMS]
implementation 'org.bukkit:craftbukkit:1.20-R0.1-SNAPSHOT' //[NMS]
implementation 'org.spigotmc:spigot-api:1.20.1-R0.1-SNAPSHOT' //[NMS]
implementation 'org.bukkit:craftbukkit:1.20.1-R0.1-SNAPSHOT' //[NMS]

// Cancer
implementation 'art.arcane:Amulet:22.7.18'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/volmit/adapt/nms/NMS.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
public final class NMS {

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

private static String version;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import java.io.IOException;
import java.util.Base64;

public class NMS_1_20 implements NMS.Impl {
public class NMS_1_20_1 implements NMS.Impl {

@Override
public String serializeStack(ItemStack is) {
Expand Down

0 comments on commit 4e30b83

Please sign in to comment.