Update example-7-hello-events.js
This commit is contained in:
parent
2f391fb4b4
commit
67d46db748
1 changed files with 10 additions and 4 deletions
|
@ -93,11 +93,17 @@ Update: Since version 2.0.8 the above code can be replaced by the more succinct:
|
||||||
});
|
});
|
||||||
|
|
||||||
***/
|
***/
|
||||||
// wph 20140927 - event handler differs depending on framework.
|
// wph 20140927 - event handler registration differs depending on framework.
|
||||||
|
|
||||||
var onJoin = __plugin.canary ? events.connection : events.playerJoin;
|
function onJoin( event ) {
|
||||||
onJoin( function( event ) {
|
|
||||||
if ( isOp(event.player) ) {
|
if ( isOp(event.player) ) {
|
||||||
echo( event.player, 'Welcome to ' + __plugin );
|
echo( event.player, 'Welcome to ' + __plugin );
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
|
if (__plugin.canary){
|
||||||
|
// canarymod
|
||||||
|
events.connection( onJoin );
|
||||||
|
} else {
|
||||||
|
// bukkit
|
||||||
|
events.playerJoin( onJoin );
|
||||||
|
}
|
||||||
|
|
Reference in a new issue