3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-11-06 03:20:06 +01:00

Updated for SpoutAPI changes

Dieser Commit ist enthalten in:
zml2008 2012-08-25 17:21:45 -07:00
Ursprung b257f95efb
Commit 853db26e2f

Datei anzeigen

@ -88,7 +88,7 @@ public class SpoutPlayer extends LocalPlayer {
Controller controller = player.getController(); Controller controller = player.getController();
if (controller instanceof VanillaPlayerController) { if (controller instanceof VanillaPlayerController) {
((VanillaPlayerController) controller).getInventory() ((VanillaPlayerController) controller).getInventory()
.addItem(new ItemStack(VanillaMaterials.getMaterial((short) type), amt), false); .addItem(new ItemStack(VanillaMaterials.getMaterial((short) type), amt));
} }
} }