Skip to content

Commit

Permalink
Done lol.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mindgamesnl committed Apr 28, 2020
1 parent 81503ac commit a3bcd77
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,11 @@ public void onEnable() {
}

if (getServer().getPluginManager().isPluginEnabled("Train_Carts")) {
this.trainCartsModule = new TrainCartsModule(this);
try {
this.trainCartsModule = new TrainCartsModule(this);
} catch (Exception e) {
OpenAudioLogger.toConsole("Hmn, looks like you have an old version of traincarts and thus OpenAudio failed to hook in.");
}
}

// set state to idle, to allow connections and such, but only if not a node
Expand Down

0 comments on commit a3bcd77

Please sign in to comment.