Skip to content

Commit 96cd447

Browse files
committed
Order of ev/id index fixed?
1 parent 3ba8210 commit 96cd447

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/teamChanger.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ var IVs = function(hp,att,def,spAtt,spDef,speed){
3131
this.hp=hp;
3232
this.att=att;
3333
this.def=def;
34-
this.speed=speed;
3534
this.spAtt=spAtt;
3635
this.spDef=spDef;
36+
this.speed=speed;
3737
};
3838

3939
//EVs are numbers between 0 and 31
40-
var EVs = function(hp,att,def,speed,spAtt,spDef){
40+
var EVs = function(hp,att,def,spAtt,spDef,speed){
4141
this.hp=hp;
4242
this.att=att;
4343
this.def=def;
44-
this.speed=speed;
4544
this.spAtt=spAtt;
4645
this.spDef=spDef;
46+
this.speed=speed;
4747
};
4848

4949
/*

0 commit comments

Comments
 (0)