Skip to content
Success

Changes

Summary

  1. Fix a minor error in the health command (commit: 67ce1da) (details)
  2. Fix a minor error with the Projectile Hits event (commit: 914420d) (details)
  3. Add ItemPlantgrowth property (commit: 0c5cac5) (details)
  4. Automatically add plugins and execution jar in RuntimeCompiler (commit: 0c3d327) (details)
  5. Fix meta errors (commit: cf5f38c) (details)
  6. Add ItemBook property (commit: 7d7f565) (details)
  7. Add speed argument to the shoot command (commit: 02cc12a) (details)
  8. Calculate particle effects correctly (commit: 50e2f92) (details)
Commit 67ce1daa49f46fab4971c1a8eb2648f1d8a5e9a8 by mcmonkey4eva
Fix a minor error in the health command

Woops, my bad!
Doesn't seem to be a disruptive error, just throws a stacktrace and
moves on (according to the user who found it)
(commit: 67ce1da)
The file was modified src/main/java/net/aufdemrand/denizen/scripts/commands/entity/HealthCommand.java (diff)
Commit 914420d6458292dc0930a2f73afd3b2a484321a6 by mcmonkey4eva
Fix a minor error with the Projectile Hits event

Arrows: Powered by dark magic.
(commit: 914420d)
The file was modified src/main/java/net/aufdemrand/denizen/scripts/containers/core/WorldScriptHelper.java (diff)
Commit 0c5cac5d78e8824a30a74b7d242d0f9e2e7eec08 by mcmonkey4eva
Add ItemPlantgrowth property

Plant growth is currently handled rather poorly by Bukkit...
nonetheless, here's a working property for it!
(commit: 0c5cac5)
The file was removedsrc/main/java/net/aufdemrand/denizen/objects/Properties.java
The file was modified src/main/java/net/aufdemrand/denizen/objects/Element.java (diff)
The file was modified src/main/java/net/aufdemrand/denizen/objects/dMaterial.java (diff)
The file was modified src/main/java/net/aufdemrand/denizen/objects/Mechanism.java (diff)
The file was addedsrc/main/java/net/aufdemrand/denizen/objects/properties/Item/ItemPlantgrowth.java
The file was modified src/main/java/net/aufdemrand/denizen/objects/properties/PropertyParser.java (diff)
The file was modified src/main/java/net/aufdemrand/denizen/objects/dItem.java (diff)
The file was modified src/main/java/net/aufdemrand/denizen/scripts/commands/CommandRegistry.java (diff)
Commit 0c3d32762824a3b60df0cfd59fd824a560e167d2 by morphanone
Automatically add plugins and execution jar in RuntimeCompiler

For some reason, it won't let you actually compile any .java files.
(commit: 0c3d327)
The file was modified src/main/java/net/aufdemrand/denizen/utilities/RuntimeCompiler.java (diff)
The file was modified src/main/java/net/aufdemrand/denizen/objects/dLocation.java (diff)
The file was modified src/main/java/net/aufdemrand/denizen/objects/dWorld.java (diff)
Commit 7d7f565d2074503c0f852806b977e35a25ff0b16 by mcmonkey4eva
Add ItemBook property

After trying to figure out how to make the book info work without
creating weird errors with the pipe symbols and newlines, I decided to
use an HTML-style escape system for book meta.
Works extremely well!

- Also, fix some errors in RuntimeCompiler.
(commit: 7d7f565)
The file was addedsrc/main/java/net/aufdemrand/denizen/objects/properties/Item/ItemBook.java
The file was modified src/main/java/net/aufdemrand/denizen/utilities/RuntimeCompiler.java (diff)
The file was modified src/main/java/net/aufdemrand/denizen/objects/properties/PropertyParser.java (diff)
The file was modified src/main/java/net/aufdemrand/denizen/objects/dItem.java (diff)
Commit 02cc12ae5edc941ddc4b31755fca6f8fffb2f299 by mcmonkey4eva
Add speed argument to the shoot command

Because the default physics aren't all that impressive... shooting in an
arbitrary direction and speed is useful.
(commit: 02cc12a)
The file was modified src/main/java/net/aufdemrand/denizen/scripts/commands/CommandRegistry.java (diff)
The file was modified src/main/java/net/aufdemrand/denizen/scripts/commands/entity/ShootCommand.java (diff)
The file was modified src/main/java/net/aufdemrand/denizen/objects/dItem.java (diff)
Commit 50e2f92d85161f27783f07d1ec091a1517fea27c by mcmonkey4eva
Calculate particle effects correctly

the Effects enum sometimes acts like it has effects it doesn't... no
idea what's going on there, just give it a lowered priority under
ParticleEffect for now.
(commit: 50e2f92)
The file was modified src/main/java/net/aufdemrand/denizen/scripts/commands/world/PlayEffectCommand.java (diff)