Skip to content

Commit

Permalink
カウントダウンを短縮
Browse files Browse the repository at this point in the history
  • Loading branch information
Arisa9006 committed Aug 9, 2024
1 parent 9efdf31 commit 7df5e08
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void onChangeWorld(PlayerChangedWorldEvent e) {
/**
* 参加時にQuickメッセージを表示します
*/
@EventHandler(priority = EventPriority.MONITOR)
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
public void sendQuickMessage(PlayerJoinEvent e) {
//LeonGunWar.getQuickBar().send(e.getPlayer());
if(!LeonGunWar.getPlugin().getMainConfig().isLobby){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class MapSelectCountdownTask extends BukkitRunnable {
private final HashMap<Integer, AtomicInteger> votes = new HashMap<>();

@Getter
private final AtomicInteger timeLeft = new AtomicInteger(20);
private final AtomicInteger timeLeft = new AtomicInteger(10);

public MapSelectCountdownTask(Set<GameMap> maps, MatchMode mode) {
this.maps = new ArrayList<>(maps);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

public class MatchStartCountdownTask extends BukkitRunnable {

private int timeLeft = 20;
private int timeLeft = 3;

@Override
public void run() {
Expand Down

0 comments on commit 7df5e08

Please sign in to comment.