Procházet zdrojové kódy

Missing mass, fixed name

tags/v0.7.0
Fen Dweller před 7 roky
rodič
revize
e81b4a58bd
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      recursive-macro.js

+ 2
- 1
recursive-macro.js Zobrazit soubor

@@ -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;


Načítá se…
Zrušit
Uložit