Skip to content

Commit

Permalink
Hide chat trigger stacktraces so as to not needlessly panic the popul…
Browse files Browse the repository at this point in the history
…ace.
  • Loading branch information
davidcernat committed Jul 3, 2013
1 parent 76b382e commit bb7cffc
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -194,7 +194,8 @@ else if (event.getMessage().toUpperCase().contains(keyword.toUpperCase()))
try {
cancelled = event.isAsynchronous() ? Bukkit.getScheduler().callSyncMethod(DenizenAPI.getCurrentInstance(), call).get() : call.call();
} catch (InterruptedException e) {
e.printStackTrace();
// TODO: Maybe someday we can fix this?
//e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
} catch (Exception e) {
Expand Down

0 comments on commit bb7cffc

Please sign in to comment.