Skip to content

Commit

Permalink
typo: vrsion
Browse files Browse the repository at this point in the history
  • Loading branch information
skykatik committed Jan 29, 2021
1 parent 313098d commit 0bf07d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ repositories{
}

ext{
mindustryVrsion = "v122"
mindustry_version = "v123.1"
gson_version = "2.8.6"
}

dependencies{
compileOnly "com.github.Anuken.Arc:arc-core:$mindustryVrsion"
compileOnly "com.github.Anuken.Mindustry:core:$mindustryVrsion"
compileOnly "com.github.Anuken.Arc:arc-core:$mindustry_version"
compileOnly "com.github.Anuken.Mindustry:core:$mindustry_version"

implementation "com.google.code.gson:gson:2.8.6"
implementation "com.google.code.gson:gson:$gson_version"
}

// error???
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ranked/RankedPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public long newRating(PlayerData p1, PlayerData p2, boolean win){
private void loadLobby(){
Map map = maps.all().find(m -> m.name().contains("lobby"));
if(map == null){
Log.err("Lobby map not found. Please add at least one map");
Log.err("Lobby map not found. Please add at least one map with name 'lobby'");
Core.app.exit();
}
world.loadMap(map);
Expand Down

0 comments on commit 0bf07d9

Please sign in to comment.