Blazingly fast world manipulation for artists, builders and everyone else. Modified for Plexus.
Go to file
snaxson 00e6a3aa65 Fix loading schematic files with block data values >127
Minecraft 1.3 introduces several blocks with data values
over 127, such as sandstone stairs (128).  Since byte
is signed, implicit conversion to short results in
negative block data values that cause later IndexOutOfBounds
exceptions.  This change explicitly masks off the extended
sign bits so the result is positive.
2012-08-15 13:25:24 +02:00
craftscripts Corrected usage message for maze.js to say width instead of height 2012-02-11 14:07:01 -08:00
lib Added /snap before [date] and /snap after [date]. Example: /snap before last Monday 2am 2011-03-13 20:23:55 -07:00
src Fix loading schematic files with block data values >127 2012-08-15 13:25:24 +02:00
.gitattributes Added a .gitattributes file 2012-01-03 14:49:33 +01:00
.gitignore Added .gitignore to ignore some eclipse files. 2011-10-31 21:56:32 +01:00
CHANGELOG.txt Updated changelog for aumgn's changes. Closes #184 2012-03-31 09:17:42 -07:00
LICENSE.txt Added /snap before [date] and /snap after [date]. Example: /snap before last Monday 2am 2011-03-13 20:23:55 -07:00
NOTICE.txt Added /snap before [date] and /snap after [date]. Example: /snap before last Monday 2am 2011-03-13 20:23:55 -07:00
perworldperms.diff Remove chat-based WECUI protocol. Everybody running a modern (1.2.5 or newer) WECUI should be fine. 2012-08-04 20:24:17 -07:00
pom.xml Whoops, forgot wagon in pom.xml. 2012-08-11 00:01:37 -07:00
README.html Updated README.html. 2011-10-01 19:11:58 -07:00
README.md Added a paragraph about building pull requests to README.md. 2012-03-06 22:23:48 +01:00

WorldEdit

WorldEdit is a voxel and block manipulation library for Minecraft. It is primarily a library but bindings to Bukkit (included) and SPC (external) are available.

Compiling

You need to have Maven installed (http://maven.apache.org). Once installed, simply run:

mvn clean install

Maven will automatically download dependencies for you. Note: For that to work, be sure to add Maven to your "PATH".

Compiling branches from pull requests

WARNING: This is not recommended if you dont understand the changes and/or trust the sender of the pull request!

You need to have Maven and Git installed.

Run the following commands:

git clone -b <branch> git://github.com/<author>/worldedit.git <directory>
cd <directory>
mvn clean package

The is just a directory name you can pick at your leisure The other placeholders should be filled in from the pull request's headline:

<author> wants someone to merge 1 commit into sk89q:master from <author>:<branch> 

Issue Tracker

Please submit bug reports and feature requests here: http://redmine.sk89q.com/projects/worldedit/issues

Contributing

We happily accept contributions. The best way to do this is to fork WorldEdit on GitHub, add your changes, and then submit a pull request. We'll look at it, make comments, and merge it into WorldEdit if everything works out.

Your submissions have to be licensed under the GNU General Public License v3.