put attack traits into the syncreport.log

This commit is contained in:
Matthias Mailänder
2013-03-19 12:31:33 +01:00
parent 78f961f653
commit c41ad3d600
5 changed files with 11 additions and 11 deletions

View File

@@ -21,10 +21,10 @@ namespace OpenRA.Mods.RA
public override object Create(ActorInitializer init) { return new AttackTesla(init.self); }
}
class AttackTesla : AttackOmni, ITick, INotifyAttack
class AttackTesla : AttackOmni, ITick, INotifyAttack, ISync
{
int charges;
int timeToRecharge;
[Sync] int charges;
[Sync] int timeToRecharge;
public AttackTesla( Actor self )
: base( self )