summaryrefslogtreecommitdiffstats
path: root/nms-patches/PortalCreator.patch
diff options
context:
space:
mode:
authorThinkofdeath <thinkofdeath@spigotmc.org>2014-11-26 08:32:16 +1100
committermd_5 <git@md-5.net>2014-11-28 17:16:30 +1100
commit24557bc2b37deb6a0edf497d547471832457b1dd (patch)
treec560572889a3b0b34964a0cddb35dc87fda3c914 /nms-patches/PortalCreator.patch
parenta4805dbd77da057cc1ea0bf344379bc6e53ca1f6 (diff)
downloadcraftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar.gz
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar.lz
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar.xz
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.zip
Update to Minecraft 1.8
For more information please see http://www.spigotmc.org/
Diffstat (limited to 'nms-patches/PortalCreator.patch')
-rw-r--r--nms-patches/PortalCreator.patch102
1 files changed, 102 insertions, 0 deletions
diff --git a/nms-patches/PortalCreator.patch b/nms-patches/PortalCreator.patch
new file mode 100644
index 00000000..5bb4eae9
--- /dev/null
+++ b/nms-patches/PortalCreator.patch
@@ -0,0 +1,102 @@
+--- ../work/decompile-bb26c12b/net/minecraft/server/PortalCreator.java 2014-11-27 08:59:46.865421124 +1100
++++ src/main/java/net/minecraft/server/PortalCreator.java 2014-11-27 08:42:10.132850949 +1100
+@@ -1,5 +1,7 @@
+ package net.minecraft.server;
+
++import org.bukkit.event.world.PortalCreateEvent; // CraftBukkit
++
+ public class PortalCreator {
+
+ private final World a;
+@@ -10,6 +12,7 @@
+ private BlockPosition f;
+ private int g;
+ private int h;
++ java.util.Collection<org.bukkit.block.Block> blocks = new java.util.HashSet<org.bukkit.block.Block>(); // CraftBukkit - add field
+
+ public PortalCreator(World world, BlockPosition blockposition, EnumAxis enumaxis) {
+ this.a = world;
+@@ -60,6 +63,10 @@
+ }
+
+ protected int a() {
++ // CraftBukkit start
++ this.blocks.clear();
++ org.bukkit.World bworld = this.a.getWorld();
++ // CraftBukkit end
+ int i;
+
+ label56:
+@@ -80,11 +87,21 @@
+ block = this.a.getType(blockposition.shift(this.d)).getBlock();
+ if (block != Blocks.OBSIDIAN) {
+ break label56;
++ // CraftBukkit start - add the block to our list
++ } else {
++ BlockPosition pos = blockposition.shift(this.d);
++ blocks.add(bworld.getBlockAt(pos.getX(), pos.getY(), pos.getZ()));
++ // CraftBukkit end
+ }
+ } else if (i == this.h - 1) {
+ block = this.a.getType(blockposition.shift(this.c)).getBlock();
+ if (block != Blocks.OBSIDIAN) {
+ break label56;
++ // CraftBukkit start - add the block to our list
++ } else {
++ BlockPosition pos = blockposition.shift(this.c);
++ blocks.add(bworld.getBlockAt(pos.getX(), pos.getY(), pos.getZ()));
++ // CraftBukkit end
+ }
+ }
+ }
+@@ -94,6 +111,11 @@
+ if (this.a.getType(this.f.shift(this.c, i).up(this.g)).getBlock() != Blocks.OBSIDIAN) {
+ this.g = 0;
+ break;
++ // CraftBukkit start - add the block to our list
++ } else {
++ BlockPosition pos = this.f.shift(this.c, i).up(this.g);
++ blocks.add(bworld.getBlockAt(pos.getX(), pos.getY(), pos.getZ()));
++ // CraftBukkit end
+ }
+ }
+
+@@ -115,15 +137,36 @@
+ return this.f != null && this.h >= 2 && this.h <= 21 && this.g >= 3 && this.g <= 21;
+ }
+
+- public void c() {
++ // CraftBukkit start - return boolean
++ public boolean c() {
++ org.bukkit.World bworld = this.a.getWorld();
++
++ // Copy below for loop
+ for (int i = 0; i < this.h; ++i) {
+ BlockPosition blockposition = this.f.shift(this.c, i);
+
+ for (int j = 0; j < this.g; ++j) {
+- this.a.setTypeAndData(blockposition.up(j), Blocks.PORTAL.getBlockData().set(BlockPortal.AXIS, this.b), 2);
++ BlockPosition pos = blockposition.up(j);
++ blocks.add(bworld.getBlockAt(pos.getX(), pos.getY(), pos.getZ()));
+ }
+ }
+
++ PortalCreateEvent event = new PortalCreateEvent(blocks, bworld, PortalCreateEvent.CreateReason.FIRE);
++ this.a.getServer().getPluginManager().callEvent(event);
++
++ if (event.isCancelled()) {
++ return false;
++ }
++ // CraftBukkit end
++ for (int i = 0; i < this.h; ++i) {
++ BlockPosition blockposition = this.f.shift(this.c, i);
++
++ for (int j = 0; j < this.g; ++j) {
++ this.a.setTypeAndData(blockposition.up(j), Blocks.PORTAL.getBlockData().set(BlockPortal.AXIS, this.b), 2);
++ }
++ }
++
++ return true; // Craft Bukkit
+ }
+
+ public static int a(PortalCreator portalcreator) {