Minecraftサーバーのプラグインを作成しているんですけど、
プレイヤーのインベントリーのアイテムをすべて落とすという処理を作りたいんですけど、できません。
SorceCode
1@Override 2public boolean onCommand(CommandSender sender,Command command,String label,String[] args) { 3 if(sender instanceof Player) { 4 Player p = (Player) sender; 5 if(command.getName().equalsIgnoreCase("test")) { 6 p.getWorld().dropItem(p.getLocation(),p.getInventory()); 7 } 8 } 9 return false; 10 } 11}
これでできると思ったんですけど...
SorceCode
1p.getInventory
のところに赤線が引かれてコンパイルの時点でエラーになります。
書き方がわかる人教えて下さい。
回答1件
あなたの回答
tips
プレビュー