From 48e5f9f9d8d4b777ea603c5991c2f7b48b37c8cc Mon Sep 17 00:00:00 2001 From: walterhiggins Date: Sat, 9 May 2015 14:25:07 +0100 Subject: [PATCH] 3.1.4!!!! --- docs/API-Reference.md | 10 ++++++---- release-notes.md | 9 +++++++++ 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/docs/API-Reference.md b/docs/API-Reference.md index f3a87a7..c9bbdaa 100644 --- a/docs/API-Reference.md +++ b/docs/API-Reference.md @@ -4836,7 +4836,7 @@ The following example illustrates how to use http.request to make a request to a ```javascript var jsResponse; -var http = require('http'); +var http = require('request'); http.request('http://scriptcraftjs.org/sample.json',function(responseCode, responseBody){ jsResponse = JSON.parse( responseBody ); }); @@ -5792,7 +5792,7 @@ Minecraft. You can see [a full list of events here][cmEvtList]. [cmEvtList]: #events-helper-module-canary-version ## Arrows Plugin -The arrows mod adds fancy arrows to the game. Arrows which... +The arrows mod adds fancy arrows to the game. Arrows which ... * Launch fireworks. * Explode on impact. @@ -5808,7 +5808,7 @@ The arrows mod adds fancy arrows to the game. Arrows which... * `/js arrows.flourish(self)` - makes a tree grow where the arrow lands. * `/js arrows.explosive(self)` - makes arrows explode. * `/js arrows.normal(self)` sets arrow type to normal. - * `/js arrows.sign(self)` turns a targeted sign into a Arrows menu + * `/js arrows.sign(self)` turns a targeted sign into an Arrows menu All of the above functions can take an optional player object or name as a parameter. For example: `/js arrows.explosive('player23')` makes @@ -5827,7 +5827,9 @@ Allows in-game operators to easily spawn creatures at current location. This command supports TAB completion so to see a list of possible entitities, type `/jsp spawn ' at the in-game command prompt, then press TAB. Visit - + (CanaryMod) +or (Bukkit) + for a list of possible entities (creatures) which can be spawned. ## alias Plugin diff --git a/release-notes.md b/release-notes.md index 38d20f6..33297c3 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,5 +1,14 @@ RELEASE NOTES ============= + +3.1.4 Release (2015 05 09) +-------------------------- +Various bug fixes and new 'inventory' module. + +3.1.3 Release (2015 03 02) +-------------------------- +Various bug fixes. + 3.1.2 Release (2015 02 16) -------------------------- Bug fix release. Fixes bug #213 (http.request fixed for CanaryMod)