updating release notes and version

This commit is contained in:
walterhiggins 2015-12-30 13:05:27 +00:00
parent aa42b74119
commit 8b0caf7295
2 changed files with 18 additions and 1 deletions

View File

@ -1 +1 @@
scriptcraft-version=3.1.11
scriptcraft-version=3.1.12

View File

@ -1,5 +1,22 @@
RELEASE NOTES
=============
3.1.12 Release (2015 12 30)
---------------------------
Added new modules
* lightning
The entities module and lightning module are now documented.
To make lightning strikes when and where any arrow lands:
var lightning = require('lightning');
events.projectileHit( function( event ) {
if (entities.arrow( event.projectile )
lightning( event.projectile );
});
3.1.11 Release (2015 11 21)
---------------------------