From 64913338a73fbc4fa90a1ecb47cffd371350d210 Mon Sep 17 00:00:00 2001 From: Walter Higgins Date: Thu, 6 Mar 2014 17:59:10 +0000 Subject: [PATCH] fixes issue #123 --- src/main/js/plugins/spawn.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/js/plugins/spawn.js b/src/main/js/plugins/spawn.js index 30803c3..1cfd566 100644 --- a/src/main/js/plugins/spawn.js +++ b/src/main/js/plugins/spawn.js @@ -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 );