Use ItemInteract for item right clicks in Sponge.
They don't fire for InteractBlock.
(79a963b3 by wizjany)
Updated Sponge to API release version 7.1.0
moved some maven links to https
updated the sponge adapters to include https://github.com/EngineHub/WorldEdit-Sponge-Adapters/commit/53719bf894cdc5fe19c72978a46f215d430a2f40
(586bb31c by phit)
Implement getMaxY for ForgeWorld.
Should play nicer with things like CubicChunks. Note that there is no
way to get the min point in Minecraft itself, so this only supports
going up, not down.
(820ccea6 by wizjany)
Report success if the blockstate is already correct
This allows the NBT data to be copied if the block is already correct.
(593224f6 by kenzie togami)
==> KT: Remember that ATs exist.
(1e3af45a by kenzie togami)
Fix accessing biomeName on server
(9b996ed2 by kenzie togami)
Bump to SNAPSHOT for any further development needed
(7eafde0c by kenzie togami)
[forge] Update Forge to 1.12.2
(58651de7 by kenzie togami)
Release 6.1.9 for Bukkit 1.12.x
(08fc855c by wizjany)
Merge pull request #419 from Cebtenzzre/patch-1
Fix ascent and descent commands. (caf0ad94 by matthew miller)
Fix ascent and descent commands.
For seven years and two days, the algorithm for ascent and descent has had an off-by-one error, and started at the wrong level.
Also, the message for failed descent has apparently never been right.
I figured I'd follow Java's conventions (as I see them) and have a body for the loop, so instead of incrementing the counter within the loop condition, I refactored the loop and put in a break statement. I prefer the shorter version, but POLA wins in a foreign code base.
(030a07b1 by cebtenzzre)
Merge pull request #417 from Qveshn/fix/customlog-extra-output
Unnecessary debug output removed. I'm very sorry =( (a820665d by matthew miller)
Unnecessary debug output removed
It was my mistake, I'm very sorry =(
(ebd2a5b7 by qveshn)
Merge pull request #415 from Qveshn/feature/customlog
Customizable command log format (Date+Time are now available) (9f86e71d by matthew miller)
Added customizable command log format (Date+Time are now available)
Added the option format to config files (config.yml + worldedit.properties). By default, current date and time are displayed.
The formatting function is implemented by analogy with the class java.util.logging.SimpleFormatter
(f680635d by qveshn)
Merge pull request #416 from Qveshn/fix/paste-double-transformation
Fix entities double transformation copy-rotate-paste and stack (6e22a8a4 by matthew miller)
Fix entities double transformation
tested with commands stack,copy,rotate,paste
1. //stack 3 up (checked field "repetitions")
2. //copy -e //rotate 45 //rotate 45 //paste (checked transformation)
(6a8ff1f4 by qveshn)
Merge pull request #408 from Brokkonaut/fix-old-sign-converting
Fix loading and converting signs in old schematics (f67f2ed9 by matthew miller)
Fix loading and converting signs in old schematics
* Sign texts not starting with { are never valid json objects, so don't try to parse
* Else try to parse as json, but fall back to read sign text as string if not parseable
(4d2fe62d by brokkonaut)
Merge pull request #409 from Brokkonaut/fix-wrong-block-for-snow-check
LEAVES2 should have snow on it too (ca660f12 by matthew miller)
LEAVES2 should have snow on it too
(701d80c7 by brokkonaut)
Merge pull request #410 from Brokkonaut/add-missing-translucent-blocks
some translucent blocks were missing (17f9b2c7 by matthew miller)
some translucent blocks were missing
(165fdac6 by brokkonaut)
Ignore CUI connections with more than 3 failed attempts.
(52263ac3 by matthew miller)
Merge pull request #407 from Legoman99573/patch-3
Made configuration file comments easier to read (df1a1d51 by matthew miller)
Fixed Grammar Mistakes
Thanks to @kenzierocks for showing me some mistakes i forgot to fix (9d61ecfb by legoman99573)
Made configuration file comments easier to read
This should make it a little more clearer to read when someone configures WorldEdit config.yml file (63da23a8 by legoman99573)
Merge pull request #379 from boy0001/vector-fix
Vector and BlockVector should use the same hashCode (b17f2b55 by matthew miller)
Vector and BlockVector should use the same hashCode
For example, the getChunks method returns a Set<Vector2D> which is
actually comprised of BlockVector2D, so using set.contains(some vector)
will always return false.
There's unlikely to be multiple entities on the same block, or above
y=256, so using the int coords is better.
(ad7fdd19 by jesse boyd)