fixed bug _players var not initialized
This commit is contained in:
parent
614f248d18
commit
736e504c5b
1 changed files with 2 additions and 2 deletions
|
@ -24,6 +24,8 @@ var arrows = arrows || {};
|
||||||
// Private implementation
|
// Private implementation
|
||||||
// ------------------------------------------------------------------------
|
// ------------------------------------------------------------------------
|
||||||
(function(){
|
(function(){
|
||||||
|
var _players = {};
|
||||||
|
|
||||||
//
|
//
|
||||||
// setup functions for the arrow types
|
// setup functions for the arrow types
|
||||||
//
|
//
|
||||||
|
@ -45,8 +47,6 @@ var arrows = arrows || {};
|
||||||
if (typeof arrows.sign != "undefined")
|
if (typeof arrows.sign != "undefined")
|
||||||
return;
|
return;
|
||||||
|
|
||||||
var _players = {};
|
|
||||||
|
|
||||||
var _arrowSign =
|
var _arrowSign =
|
||||||
signs.select("Arrow",
|
signs.select("Arrow",
|
||||||
["Normal","Explosive","Teleport","Flourish","Lightning"],
|
["Normal","Explosive","Teleport","Flourish","Lightning"],
|
||||||
|
|
Reference in a new issue