Skip to content

Commit

Permalink
Fix 1.6.6 Beta Fr
Browse files Browse the repository at this point in the history
  • Loading branch information
zedafty committed Sep 2, 2022
1 parent 505f126 commit 2695107
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dnd-3-5-deli.html

Large diffs are not rendered by default.

Binary file added rel/dnd-3-5-deli-v1.6.6b-fr-fix.zip
Binary file not shown.
10 changes: 8 additions & 2 deletions src/3-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -1563,7 +1563,7 @@ on("change:int change:wis change:cha", updatePsychicalTotal);

// Hit Points
const updateHitPointsAliases = function(e) { // e = event
let s = e.sourceAttribute;
let s = e !== undefined ? e.sourceAttribute : "";
getAttrs([...attrs.Char.Lvl, ...attrs.Abi.Con, ...attrs.Stat.Hp, "brb-rage", "char-aging"], v => {
let u = {};
let hp;
Expand Down Expand Up @@ -2218,7 +2218,6 @@ const intializeAttributes = function(f) { // f = function
"sk-diplomacy-misc" : 0,
"sk-diplomacy-race" : 0,
"sk-diplomacy-rank" : 0,
"tab-show" : 1,
"sk-diplomacy-syn" : 0,
"sk-disabledevice-misc" : 0,
"sk-disabledevice-race" : 0,
Expand Down Expand Up @@ -2411,13 +2410,20 @@ const intializeAttributes = function(f) { // f = function
"spl-focus-necromancy" : 0,
"spl-focus-transmutation" : 0,
"sr" : 0,
"state-dead" : 0,
"state-disabled" : 0,
"state-dying" : 0,
"state-enc-hvy" : 0,
"state-enc-med" : 0,
"state-unconscious" : 0,
"str-base" : 10,
"str-bck" : 10,
"str-dmg" : 0,
"str-item" : 0,
"str-misc" : 0,
"str-race" : 0,
"str-temp" : 0,
"tab-show" : 1,
"use-d23" : 1,
"version" : version,
"vis-dark" : 0,
Expand Down

0 comments on commit 2695107

Please sign in to comment.