Advertisement
Guest User

Untitled

a guest
Oct 21st, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. Error: Cannot declare class UHC\Commands\PluginIdentifiableCommand because the name is already in use
  2. File: UHC/src/UHC/Commands/BaseCommand
  3. Line: 11
  4. Type: E_COMPILE_ERROR
  5.  
  6. THIS CRASH WAS CAUSED BY A PLUGIN
  7. BAD PLUGIN: UHC v7
  8.  
  9. Code:
  10. [2]
  11. [3] namespace UHC\Commands;
  12. [4]
  13. [5] use UHC\Main;
  14. [6]
  15. [7] use pocketmine\command\Command;
  16. [8] use pocketmine\command\CommandSender;
  17. [9] use pocketmine\command\PluginIdentifiableCommand;
  18. [10]
  19. [11] class PluginIdentifiableCommand extends Command{
  20. [12]
  21. [13] private $plugin;
  22. [14]
  23. [15] public function __construct(Main $plugin, $name, $description, $usageMessage, $aliases){
  24. [16]
  25. [17] parent::__construct($name, $description, $usageMessage, $aliases);
  26. [18] $this->plugin = $plugin;
  27. [19] }
  28. [20]
  29. [21] public function execute(CommandSender $sender, $commandLabel, array $args){
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement