PurpleIRC-spigot/src/main/java/com/cnaude/purpleirc/GameListeners/DeathMessagesListener.java

54 lines
1.6 KiB
Java

/*
* Copyright (C) 2014 cnaude
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.cnaude.purpleirc.GameListeners;
import com.cnaude.purpleirc.PurpleBot;
import com.cnaude.purpleirc.PurpleIRC;
import com.cnaude.purpleirc.TemplateName;
import com.gmail.josemanuelgassin.DeathMessages.DeathMessageEvent;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
/**
*
* @author cnaude
*/
public class DeathMessagesListener implements Listener {
private final PurpleIRC plugin;
/**
*
* @param plugin
*/
public DeathMessagesListener(PurpleIRC plugin) {
this.plugin = plugin;
}
/**
*
* @param event
*/
@EventHandler
public void onDeathMessageEvent(DeathMessageEvent event) {
plugin.logDebug("onDeathMessageEvent caught");
for (PurpleBot ircBot : plugin.ircBots.values()) {
ircBot.gameDeath(event.getPlayer(), event.getDeathMessage(), TemplateName.DEATH_MESSAGES);
}
}
}