fix base protocol

This commit is contained in:
creeper123123321 2021-04-21 11:41:50 -03:00
parent 2621374519
commit 43162be6ff
2 changed files with 6 additions and 3 deletions

View File

@ -28,15 +28,13 @@ extra.set("archivesBaseName", "ViaFabric")
description = "Client-side and server-side ViaVersion implementation for Fabric"
repositories {
mavenLocal()
//mavenLocal()
mavenCentral()
jcenter()
maven(url = "https://repo.viaversion.com/")
maven(url = "https://oss.sonatype.org/content/repositories/snapshots")
maven(url = "https://maven.fabricmc.net/")
maven(url = "https://server.bbkr.space/artifactory/libs-snapshot")
maven(url = "https://server.bbkr.space/artifactory/libs-release")
maven(url = "https://maven.extracraftx.com")
}

View File

@ -26,4 +26,9 @@ public class ViaFabricHostnameProtocol extends SimpleProtocol {
}
});
}
@Override
public boolean isBaseProtocol() {
return true;
}
}