Skip to content

Commit

Permalink
Fix bug removing region
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverdunk committed Jun 15, 2019
1 parent 240febb commit e761754
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>com.oliverdunk</groupId>
<artifactId>MCJukebox</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>
</parent>

<artifactId>MCJukebox-plugin</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>

<repositories>
<repository>
Expand All @@ -32,7 +32,7 @@
<dependency>
<groupId>com.oliverdunk</groupId>
<artifactId>MCJukebox-shared</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>
</dependency>
<dependency>
<groupId>com.github.SkriptLang</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void removeRegion(String ID){
showManager.getShow(regions.get(ID)).removeMember(Bukkit.getPlayer(uuid));
} else {
JukeboxAPI.stopMusic(Bukkit.getPlayer(uuid));
playersInRegion.remove(uuid);
keys.remove();
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: MCJukebox
version: 2.6.2
version: 2.6.3
main: net.mcjukebox.plugin.bukkit.MCJukebox
softdepend: [WorldGuard, Skript]

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>com.oliverdunk</groupId>
<artifactId>MCJukebox</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>

<modules>
<module>region-providers</module>
Expand Down
2 changes: 1 addition & 1 deletion region-providers/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.oliverdunk</groupId>
<artifactId>MCJukebox-region-providers</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>
</parent>

<artifactId>MCJukebox-region-providers-api</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions region-providers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<parent>
<groupId>com.oliverdunk</groupId>
<artifactId>MCJukebox</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>
</parent>

<artifactId>MCJukebox-region-providers</artifactId>
<packaging>pom</packaging>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>

<modules>
<module>api</module>
Expand Down
4 changes: 2 additions & 2 deletions region-providers/wg6/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.oliverdunk</groupId>
<artifactId>MCJukebox-region-providers</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>
</parent>

<artifactId>MCJukebox-region-providers-wg6</artifactId>
Expand All @@ -16,7 +16,7 @@
<dependency>
<groupId>com.oliverdunk</groupId>
<artifactId>MCJukebox-region-providers-api</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>
</dependency>
<dependency>
<groupId>com.sk89q</groupId>
Expand Down
4 changes: 2 additions & 2 deletions region-providers/wg7/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.oliverdunk</groupId>
<artifactId>MCJukebox-region-providers</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>
</parent>

<artifactId>MCJukebox-region-providers-wg7</artifactId>
Expand All @@ -16,7 +16,7 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>MCJukebox-region-providers-api</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>
</dependency>
<dependency>
<groupId>com.sk89q.worldguard</groupId>
Expand Down
8 changes: 4 additions & 4 deletions shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>com.oliverdunk</groupId>
<artifactId>MCJukebox</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>
</parent>

<artifactId>MCJukebox-shared</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>

<repositories>
<repository>
Expand All @@ -24,12 +24,12 @@
<dependency>
<groupId>com.oliverdunk</groupId>
<artifactId>MCJukebox-region-providers-wg6</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>
</dependency>
<dependency>
<groupId>com.oliverdunk</groupId>
<artifactId>MCJukebox-region-providers-wg7</artifactId>
<version>2.6.2-RELEASE</version>
<version>2.6.3-RELEASE</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit e761754

Please sign in to comment.