Skip to content

Commit 980e0df

Browse files
committedFeb 27, 2020
update to latest bstats
1 parent 6c1940e commit 980e0df

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ repositories {
1212
mavenCentral()
1313
maven { url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/" }
1414
maven { url "http://repo.dmulloy2.net/nexus/repository/public/" }
15-
maven { url "http://repo.bstats.org/content/repositories/releases/" }
15+
maven { url "https://repo.codemc.org/repository/maven-public" }
1616
}
1717

1818
dependencies {
1919
implementation('org.bukkit:bukkit:1.12.2-R0.1-SNAPSHOT') {
2020
exclude group: 'junit', module: 'junit'
2121
}
22-
implementation 'org.bstats:bstats-bukkit:1.2'
22+
implementation 'org.bstats:bstats-bukkit:1.7'
2323

2424
compileOnly group: "com.comphenix.protocol", name: "ProtocolLib", version: "4.4.0"
2525

‎src/main/java/tech/macil/minecraft/noneuclid/NonEuclidPlugin.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public void onEnable() {
9494
}
9595
}
9696

97-
Metrics metrics = new Metrics(this);
97+
Metrics metrics = new Metrics(this, 2743);
9898
metrics.addCustomChart(new Metrics.SingleLineChart("location_count", () -> intersections.size()));
9999

100100
if (intersections.size() == 0) {

0 commit comments

Comments
 (0)
Please sign in to comment.