Commit Graph

4621 Commits

Author SHA1 Message Date
9930fb7338 Merge pull request #269 from sk89q/generatebiome
Added a //generatebiome command, which uses formulae to generate free-form biomes.
2013-11-01 12:23:27 -07:00
37e52707f1 Merge pull request #274 from sk89q/redomasks
Apply masks before history (clone)
2013-11-01 12:17:40 -07:00
f7c7292f79 Added a //generatebiome command, which uses formulae to generate free-form biomes.
Shorthands: //genbiome, //gb
2013-11-01 20:09:30 +01:00
1746dd2e1a Snapshot restore now obeys masks again. 2013-11-01 20:09:28 +01:00
803b4df72e Masks are now checked in setBlock instead of rawSetBlock.
Untested!!!
2013-11-01 20:09:27 +01:00
69bcaa7133 Merge pull request #272 from sk89q/solidmask
Added a #solid mask
2013-11-01 12:08:29 -07:00
8b2be37f93 Merge pull request #273 from sk89q/non-cuboid-walls
Added non-cuboid support for //walls and //outline.
2013-11-01 11:52:58 -07:00
961773ce5d Added non-cuboid support for //walls and //outline. 2013-11-01 19:05:49 +01:00
627e029fbb Added a SolidBlockMask (#solid). 2013-10-30 08:49:14 +01:00
02de320980 Introduced AbstractMask as a superclass to all implementors of the Mask interface. 2013-10-30 08:48:40 +01:00
6e3d8395df Fixed UnderOverlayMask. 2013-10-30 08:48:13 +01:00
ae6e59e8d0 Removed references to the deprecated BlockTypeMask class from UnderOverlayMask. 2013-10-30 08:48:12 +01:00
6beba674cb Added '*-private.sh' to .gitignore. 2013-10-26 12:38:06 +02:00
f27d7e585d Moved ArbitraryShape and WorldEditExpressionEnvironment to a new "shape" package. 2013-10-26 12:33:24 +02:00
8d685946c0 Merge pull request #271 from sk89q/up-noglass
/up and /ceil now use less glass, particularly for creative mode
2013-10-26 03:06:20 -07:00
dcd1c7cee8 Made /up and /ceil benefit from fly mode.
This avoids littering the world with floating glass blocks when possible.
2013-10-25 18:22:11 +02:00
90e1788781 Refactored up-with-glass code into a helper function. 2013-10-24 22:07:31 +02:00
a1fa32153c Code quality improvements. 2013-10-24 22:07:30 +02:00
661484f858 Code quality improvements. 2013-10-23 18:54:45 +02:00
886b2ab720 Merge pull request #267 from sk89q/rotating
Block rotation/flip fixes and removed MCPCPlusXNmsBlock_151dv.java from resources/
2013-10-20 23:41:09 -07:00
7dca4d15ef Made hay blocks rotate like logs.
They're textured like them, too, so it fits.
Also, they no longer violate the "flip twice equals rotate twice" conditions.
2013-10-20 16:31:50 +02:00
696a2819a7 Fixed head rotation. 2013-10-20 16:31:50 +02:00
6c4d2e2d8e Fixed lever rotation. 2013-10-20 16:31:49 +02:00
c750cc6871 Fixed bed rotation. 2013-10-20 16:31:48 +02:00
9220831ea4 Fixed door rotation and disabled door y flipping.
Mojang radically changd the way doors work, so y flipping on a per-block
basis is now impossible.
2013-10-20 16:31:48 +02:00
06ef568bdd Code formatting. 2013-10-20 16:31:47 +02:00
73bf2bd215 Fixed not flipping the center plane blocks.
Added regression test so we'll never have to deal with it again.
2013-10-20 16:31:46 +02:00
54dca39b07 Removed the .java file from the resources folder. 2013-10-20 16:31:46 +02:00
9e708b70a9 Fixed some warnings. 2013-10-20 16:30:22 +02:00
2fdc76a3f9 Added centralTopLimit property for hoppers. 2013-10-20 00:24:55 +02:00
b891660263 Merge pull request #268 from sk89q/blocktype-adjustments
Added data values to the BlockType methods and used those in a few places.
2013-10-18 17:00:45 -07:00
43f9e517e7 BlockType adjustments
- Flagged all snow layers except single layers (data values 0 and 8) as "cannot be passed through".
- Fixed centralTopLimit for trap doors and fence gates and cake blocks with data values 6..15.
2013-10-17 11:03:56 +02:00
1ec17b5a44 Made /ascend and /descend use centralTopLimit. 2013-10-17 11:03:55 +02:00
921c354db7 Made everything that uses canPassThrough use data values. 2013-10-17 11:03:55 +02:00
b612de3429 Added Block and id/data overloads to canPassThrough, centralTopLimit and isNaturalTerrainBlock. 2013-10-17 11:03:54 +02:00
d2f51b27b5 Gave the function containing the code for the //gmask command a better name. 2013-10-17 11:03:27 +02:00
aebaa921fd Fixed some general silliness. 2013-10-17 11:03:26 +02:00
cb8df85cc7 Allow colors for stained clay and carpet data values. 2013-10-02 21:55:51 -04:00
bd98e98698 Update Forge implementation and added build script.
Including:
* Update to new MCP names
* Adding of an build script (see maven 'forge' profile)
* Adding of an regeneration code
* Simplifying of the command registration
* Added command usage description to avoid empty help pages
* Added missing raw information
* Used a WeakReference as world reference to avoid keeping a world in memory
* Added mcmod.info
* Fixed player orientation
* Fixed printRaw not splitting the message correct
2013-09-29 23:48:11 -04:00
zml
4daef4aff2 Check both superperms and PEX directly to support older versions of PEX with inGroup
Older versions didn't set the group nodes correctly, so they were only
accessible through getEffectivePermissions()
2013-09-25 19:35:27 -07:00
a65b574d9d Merge pull request #266 from sk89q/expression
Fixed the query functions not comparing data values at all for their return values.
2013-09-25 11:59:47 -07:00
e2f1abd7e4 Fixed the query functions not comparing data values at all for their return values.
Also made them accept RValue as well and added some test cases for them
and for the overloader bug i fixed last time.
2013-09-25 00:37:54 +02:00
0f764187d0 Merge pull request #264 from sk89q/expression
Expression parser changes
2013-09-22 11:39:13 -07:00
8badb09399 Added query{,Abs,Rel}(x,y,z,typevar,datavar) to the expression parser. 2013-09-21 19:44:56 +02:00
eba1114b39 IntelliJ demanded attention. 2013-09-21 19:44:56 +02:00
57bb5470eb Allowed usage of non-existant variables in all LValue expressions. 2013-09-21 19:44:55 +02:00
4fa5daf974 Moved megabuf to the Functions class 2013-09-21 19:24:54 +02:00
aef3b0024a Fixed the overloader 2013-09-21 19:24:53 +02:00
cabced11a7 Removed some "final" qualifiers from static methods.
Also fixed some other warnings IntelliJ annoyed me with
2013-09-21 10:09:49 -04:00
c26de335ff [maven-release-plugin] prepare for next development iteration 2013-09-21 09:41:47 -04:00