mirror of
https://gitlab.com/phoenix-dvpmt/mmocore.git
synced 2025-03-01 15:51:06 +01:00
Removed debug message :D
This commit is contained in:
parent
f1366a584d
commit
00f1581707
@ -1026,8 +1026,6 @@ public class PlayerData extends SynchronizedDataHolder implements OfflinePlayerD
|
||||
Bukkit.getPluginManager().callEvent(event);
|
||||
if (event.isCancelled()) return false;
|
||||
|
||||
Bukkit.broadcastMessage("Entering casting mode");
|
||||
|
||||
this.skillCasting = SkillCastingMode.getCurrent().newInstance(this);
|
||||
return true;
|
||||
}
|
||||
@ -1058,8 +1056,6 @@ public class PlayerData extends SynchronizedDataHolder implements OfflinePlayerD
|
||||
if (event.isCancelled()) return false;
|
||||
}
|
||||
|
||||
Bukkit.broadcastMessage("Leaving casting mode");
|
||||
|
||||
skillCasting.close();
|
||||
this.skillCasting = null;
|
||||
setLastActivity(PlayerActivity.ACTION_BAR_MESSAGE, 0); // Reset action bar
|
||||
|
@ -12,7 +12,6 @@ import net.Indyuce.mmocore.api.event.PlayerKeyPressEvent;
|
||||
import net.Indyuce.mmocore.api.player.PlayerData;
|
||||
import net.Indyuce.mmocore.gui.api.item.Placeholders;
|
||||
import net.Indyuce.mmocore.skill.cast.*;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.GameMode;
|
||||
import org.bukkit.configuration.ConfigurationSection;
|
||||
import org.bukkit.entity.Player;
|
||||
@ -173,7 +172,6 @@ public class KeyCombos implements SkillCastingListener {
|
||||
|
||||
@Override
|
||||
public void onTick() {
|
||||
Bukkit.broadcastMessage("runnable combos");
|
||||
if (actionBarOptions != null) if (actionBarOptions.isSubtitle)
|
||||
getCaster().getPlayer().sendTitle(" ", actionBarOptions.format(this), 0, 20, 0);
|
||||
else getCaster().displayActionBar(actionBarOptions.format(this));
|
||||
|
Loading…
Reference in New Issue
Block a user