Skip to content

Commit

Permalink
Small fix about Bungee-cord mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Despical committed Aug 17, 2020
1 parent 0306af3 commit 0cfe09a
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# One in the Chamber [![](https://img.shields.io/badge/wiki-click-blue.svg)](https://github.com/Despical/OITC/wiki) [![Discord](https://img.shields.io/discord/719922452259668000.svg?color=7289DA&label=discord)](https://discord.gg/Vhyy4HA)
One in the Chamber is a Minecraft survival minigame designed for small and big servers. This minigame is unique and very configurable, 100% free and open source!

Expand Down Expand Up @@ -33,7 +32,7 @@ Then add the dependency
<dependency>
<groupId>com.github.Despical</groupId>
<artifactId>OITC</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.0.3 Release (17.08.2020)
* Fixed Bungee-cord mode getting null pointer exception.

### 1.0.2 Release (01.08.2020)
* Fixed all of the messages.
* Performance improvements.
Expand Down
8 changes: 8 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## This file is dedicated to **OITC** project's all-time contributors.

**I'm sincerely glad to everyone who supported our project every time!**
**Contributors are listed in alphabetical order, every contributor is equally important!**

* [Despical](https://www.spigotmc.org/members/despical.615094/) - Owner & Author

**Also thanks to every bug reporters for reporting us those nasty bugs, and code contributors for making OITC better!**
6 changes: 5 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>me.despical</groupId>
<artifactId>one-in-the-chamber</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
<name>One In The Chamber</name>

<properties>
Expand Down Expand Up @@ -44,6 +44,10 @@
<id>codemc-repo</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
</repository>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/despical/oitc/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -165,14 +165,14 @@ public void onDisable() {

private void initializeClasses() {
ScoreboardLib.setPluginInstance(this);
chatManager = new ChatManager(this);
if (getConfig().getBoolean("BungeeActivated", false)) {
bungeeManager = new BungeeManager(this);
}
if (configPreferences.getOption(ConfigPreferences.Option.DATABASE_ENABLED)) {
FileConfiguration config = ConfigUtils.getConfig(this, "mysql");
database = new MysqlDatabase(config.getString("user"), config.getString("password"), config.getString("address"));
}
chatManager = new ChatManager(this);
userManager = new UserManager(this);
Utils.init(this);
ArenaSign.init(this);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# +---------------------------------------------------------+ #
# | One in the Chamber by Despical (Version 1.0.2) | #
# | One in the Chamber by Despical (Version 1.0.3) | #
# +---------------------------------------------------------+ #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #

Expand Down

0 comments on commit 0cfe09a

Please sign in to comment.