This website works better with JavaScript.
Home
Explore
Help
Sign In
chemicalcrux
/
macrovision
Watch
1
Star
0
Fork
0
Code
Issues
5
Pull Requests
0
Releases
10
Wiki
Activity
Browse Source
Fix newer characters missing their mass values
tags/v0.0.6-a^0
Fen Dweller
5 years ago
parent
3d2252d13e
commit
0ebc08bdfe
1 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-3
presets/characters.js
+ 3
- 3
presets/characters.js
View File
@@ -23,12 +23,12 @@ function makeCharacter(name, author, viewInfo, defaultSizes, defaultSize) {
name: value.name
}
if (value.
mass
) {
views[key].attributes
[key]
= {
if (value.
weight
) {
views[key].attributes
.weight
= {
name: "Mass",
power: 3,
type: "mass",
base: value.
mass
base: value.
weight
};
}
});
Write
Preview
Loading…
Cancel
Save