This website works better with JavaScript.
Home
Explore
Help
Sign In
chemicalcrux
/
stroll
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
11
Wiki
Activity
Browse Source
Fix micros being WAY too common by reducing their weight
tags/v1.1.1
Fen Dweller
5 years ago
parent
3f1d036823
commit
605c2b405d
2 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
game.js
+2
-2
recursive-macro.js
+ 1
- 1
game.js
View File
@@ -2181,7 +2181,7 @@ function getWeights(region, area) {
}
}
if (macro.victimsMicros) {
weights["Micro"] = 1;
weights["Micro"] =
0.00
1;
}
if (macro.victimsMacros) {
+ 2
- 2
recursive-macro.js
View File
@@ -153,7 +153,7 @@ var clusters =
"Person": 5,
"Human": 5,
"Cow": 15,
"Micro":
1
0,
"Micro":
5
0,
"Macro": 0,
//Vehicles
"Car": 3,
@@ -201,7 +201,7 @@ var cluster_chances =
"Person": 0.8,
"Human": 0.8,
"Cow": 0.5,
"Micro": 1
0
,
"Micro": 1,
"Macro": 0,
//Vehicles
"Car": 0.5,
Write
Preview
Loading…
Cancel
Save