Skip to content

Commit

Permalink
Simplify first-join => join
Browse files Browse the repository at this point in the history
  • Loading branch information
garbagemule committed Aug 20, 2013
1 parent 6ef8bf2 commit 4ce8dcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/res/settings.yml
Expand Up @@ -39,5 +39,5 @@ display-waves-as-level: false
display-timer-as-level: false
use-scoreboards: true
isolated-chat: false
global-first-join-announce: false
global-join-announce: false
global-end-announce: false
2 changes: 1 addition & 1 deletion src/com/garbagemule/MobArena/ArenaImpl.java
Expand Up @@ -562,7 +562,7 @@ public boolean playerJoin(Player p, Location loc)
}

// Announce globally (must happen before moving player)
if (settings.getBoolean("global-first-join-announce", false)) {
if (settings.getBoolean("global-join-announce", false)) {
if (lobbyPlayers.isEmpty()) {
for (Player q : Bukkit.getOnlinePlayers()) {
Messenger.tell(q, Msg.ARENA_JOIN_GLOBAL, configName());
Expand Down

0 comments on commit 4ce8dcf

Please sign in to comment.