Merge branch 'master' of github.com:walterhiggins/ScriptCraft

This commit is contained in:
walterhiggins 2014-03-08 12:13:57 +00:00
commit d16487bcc3
2 changed files with 3 additions and 3 deletions

View file

@ -139,7 +139,7 @@ var _getTeam = function( player, pteams ) {
var createGame = function( duration, teams ) {
var players,
i,
_snowBalls = new ItemStack( Material.SNOW_BALL, 64 );
_snowBalls = new bkItemStack( bkMaterial.SNOW_BALL, 64 );
var _gameState = {
teams: teams,
@ -179,7 +179,7 @@ var createGame = function( duration, teams ) {
*/
var _onSnowballHit = function( l, event ) {
var snowball = event.damager;
if ( !snowball || !( snowball instanceof Snowball ) ) {
if ( !snowball || !( snowball instanceof bkSnowball ) ) {
return;
}
var throwersTeam = _getTeam( snowball.shooter, _gameState.teams );

View file

@ -37,5 +37,5 @@ command( 'spawn', function( parameters, sender ) {
}
var world = location.world;
var type = ('' + parameters[0]).toUpperCase();
world.spawnEntity( location, EntityType[type] );
world.spawnEntity( location, bkEntityType[type] );
}, entities );