
Class function declaration typo `efficiency as double expansion as double` (missed `,`)
Krutoy242 opened this issue ยท 1 comments
I don't understand why this code doesn't cause CraftTweaker to crash the script, but there is missed ,
symbol in file NTP/scripts/rotorclasses.zs
.
zenConstructor(name as string,item1 as string,item2 as string,blade as string, efficiency as double expansion as double){
this.name = name;
this.item1 = item1;
this.item2 = item2;
this.blade = blade;
this.efficiency = efficiency;
this.expansion = expansion;
}
}