Просмотр исходного кода

Missing mass, fixed name

tags/v0.7.0
Fen Dweller 8 лет назад
Родитель
Сommit
e81b4a58bd
1 измененных файлов: 2 добавлений и 1 удалений
  1. +2
    -1
      recursive-macro.js

+ 2
- 1
recursive-macro.js Просмотреть файл

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


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


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


Загрузка…
Отмена
Сохранить