Make sure to include the right repo

This commit is contained in:
Andrew Steinborn
2019-06-18 07:48:03 -04:00
parent 8a45074eb2
commit c55ab2c908
2 changed files with 7 additions and 0 deletions

View File

@@ -38,6 +38,7 @@ public interface RawCommand extends Command {
return suggest(source, String.join(" ", currentArgs));
}
@Override
default boolean hasPermission(CommandSource source, String @NonNull [] args) {
return hasPermission(source, String.join(" ", args));
}

View File

@@ -54,6 +54,12 @@ allprojects {
maven {
url "https://libraries.minecraft.net"
}
// Configurate
maven {
name = 'sponge'
url = 'https://repo.spongepowered.org/maven'
}
}
test {