///event caller///
public var Damage:Array = new Array();// Damage is populated externally and is not empty
var bully:Bullet = new Bullet(Target.x +64,Target.y +64,team,Damage);
///bullet class////
private var Damage:Array = new Array()
public function Bullet(c1:int , c2:int ,c3:int,c4:Array)
{
desx = c1;
desy = c2;
team = c3;
Damage = c4
trace(Damage)
}
my problem is that [trace(Damage)] comes back empty im wondering if there is a reason why this happens