fixed PlayerCommandPreprocessEvent inheritance

This commit is contained in:
sunkid
2011-03-28 17:15:41 -07:00
parent a5b07e7355
commit 1de3f3cecc
2 changed files with 9 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ package org.bukkit.event.player;
import org.bukkit.entity.Player;
public class PlayerCommandPreprocessEvent extends PlayerChatEvent {
public PlayerCommandPreprocessEvent(Player player, String message) {
super(player, message);
public PlayerCommandPreprocessEvent(final Player player, final String message) {
super(Type.PLAYER_COMMAND_PREPROCESS, player, message);
}
}