Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package org.bukkit.event.player;
2
3import org.bukkit.entity.Player;
4
5/**
6 * Called early in the command handling process. This event is only
7 * for very exceptional cases and you should not normally use it.
8 */
9public class PlayerCommandPreprocessEvent extends PlayerChatEvent {
10 public PlayerCommandPreprocessEvent(final Player player, final String message) {
11 super(Type.PLAYER_COMMAND_PREPROCESS, player, message);
12 }
13}