Explorar el Código

Missing mass, fixed name

tags/v0.7.0
Fen Dweller hace 7 años
padre
commit
e81b4a58bd
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      recursive-macro.js

+ 2
- 1
recursive-macro.js Ver fichero

@@ -73,6 +73,7 @@ var masses =
"Person": 80,
"Car": 1000,
"Bus": 5000,
"Tram": 10000,
"Motorcycle": 200,
"House": 10000,
"Train": 50000,
@@ -420,7 +421,7 @@ function Bus(count = 1) {
}

function Tram(count = 1) {
this.name = "Bus";
this.name = "Tram";

copy_defaults(this,new DefaultEntity());
this.count = count;


Cargando…
Cancelar
Guardar