mirror of
https://github.com/ikrpg/ikrpg.github.io.git
synced 2026-05-13 14:27:22 +00:00
Small bug fix for stats
This commit is contained in:
parent
1eb7d38125
commit
c8476ea568
2 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
CACHE MANIFEST
|
CACHE MANIFEST
|
||||||
# 2015-10-03
|
# 2015-10-03 v2
|
||||||
|
|
||||||
CACHE:
|
CACHE:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4143,7 +4143,7 @@ var ikrpg = ikrpg || {};
|
||||||
character["s"+(index+1)]["sum"] = statValue + value;
|
character["s"+(index+1)]["sum"] = statValue + value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(stats.length > 1) {
|
if(stats && stats.length > 1) {
|
||||||
var stat = stats[1];
|
var stat = stats[1];
|
||||||
var lowerStat = stat.toLowerCase();
|
var lowerStat = stat.toLowerCase();
|
||||||
index += 1;
|
index += 1;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue