File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- scriptcraft-version =3.1.4
1+ scriptcraft-version =3.1.5
Original file line number Diff line number Diff line change 11RELEASE NOTES
22=============
33
4+ 3.1.5 Release (2015 05 31)
5+ --------------------------
6+ CanaryMod version : Add events.connect as synonym for events.connnection for backward-compatibility
7+ with 1.7.9 and book listings.
8+
493.1.4 Release (2015 05 09)
510--------------------------
611Various bug fixes and new 'inventory' module.
Original file line number Diff line number Diff line change @@ -99,6 +99,10 @@ var helper;
9999if ( __plugin . canary ) {
100100 module . exports = require ( 'events-canary' ) ;
101101 helper = require ( 'events-helper-canary' ) ;
102+ // backwards-compatibility with canarymod 1.7.9 for book listings
103+ if ( helper . connection && ! helper . connect ) {
104+ helper . connect = helper . connection ;
105+ }
102106} else {
103107 module . exports = require ( 'events-bukkit' ) ;
104108 helper = require ( 'events-helper-bukkit' ) ;
You can’t perform that action at this time.
0 commit comments