Skip to content
This repository was archived by the owner on Jul 23, 2024. It is now read-only.

Commit 31ed5c7

Browse files
committed
added 1.17
bumped version to 1.1
1 parent 2593952 commit 31ed5c7

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ apply plugin: 'eclipse'
2424
apply plugin: 'maven-publish'
2525
apply plugin: 'org.spongepowered.mixin'
2626

27-
version = '1.0'
27+
version = '1.1'
2828
group = 'de.rexlmanu' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
2929
archivesBaseName = 'viaversion-addon'
3030

@@ -109,6 +109,14 @@ dependencies {
109109
}
110110

111111
jar {
112+
// Removing files from dependencies
113+
exclude(
114+
"mcmod.info",
115+
"fabric.mod.json",
116+
"velocity-plugin.json",
117+
"bungee.yml",
118+
"plugin.yml",
119+
)
112120
// Excludes the start file
113121
exclude("**/launch")
114122
configurations.shade.each { dep ->

src/main/java/de/rexlmanu/viaversionaddon/menu/ProtocolScreen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
public class ProtocolScreen extends Screen {
2222

23-
private static List<Integer> BLOCKED_VERSIONS = ImmutableList.of(51, 60, 61, 73, 74, 77, 78, 4, 5, -1, 755);
23+
private static List<Integer> BLOCKED_VERSIONS = ImmutableList.of(51, 60, 61, 73, 74, 77, 78, 4, 5, -1);
2424

2525
private Screen previousScreen;
2626

0 commit comments

Comments
 (0)