Skip to content

Commit

Permalink
Fixed arena after playing does not reset the arena options from config
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigerpanzer02 committed Jul 9, 2024
1 parent 1ba7368 commit 48b3111
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### 2.0.10 Release (09.07.2024)
* Updated to minigamesbox 1.3.11
* Fixed arena after playing does not reset the arena options from config

### 2.0.9 Release (25.06.2024)
* Updated to minigamesbox 1.3.10

### 2.0.8 Release (18.06.2024)
* Updated to minigamesbox 1.3.9
* Updated API

### 2.0.7 Release (24.04.2024)
* Fixed bug where the murderer gets teleported to the lobby to fast when arena ends
* Updated to minigamesbox 1.3.8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ private void registerSpecialItems() {
}

private void registerArenaOptions() {
getArenaOptionManager().registerArenaOption("DETECTIVE_DIVIDER", new ArenaOption("null", 1));
getArenaOptionManager().registerArenaOption("MURDERER_DIVIDER", new ArenaOption("null", 1));
getArenaOptionManager().registerArenaOption("DETECTIVE_DIVIDER", new ArenaOption("playerperdetective", 1));
getArenaOptionManager().registerArenaOption("MURDERER_DIVIDER", new ArenaOption("playerpermurderer", 1));
}

private IConfigPreferences getConfigPreferences() {
Expand Down

0 comments on commit 48b3111

Please sign in to comment.