Browse Source

bug #1944: Mobs were not at max hp on spawning

tags/v0.12.0
Shaun 1 year ago
parent
commit
cc05c4996e
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      src/server/world/mobBuilder.js

+ 3
- 2
src/server/world/mobBuilder.js View File

@@ -55,8 +55,7 @@ const buildCpnStats = (mob, blueprint, typeDefinition) => {
const cpnStats = mob.addComponent('stats', { const cpnStats = mob.addComponent('stats', {
values: { values: {
level, level,
hpMax,
hp: hpMax
hpMax
} }
}); });


@@ -195,6 +194,8 @@ const build = (mob, blueprint, type, zoneName) => {
}); });


const statValues = mob.stats.values; const statValues = mob.stats.values;
statValues.hp = statValues.hpMax;

syncStats.forEach(s => mob.syncer.setObject(false, 'stats', 'values', s, statValues[s])); syncStats.forEach(s => mob.syncer.setObject(false, 'stats', 'values', s, statValues[s]));
}; };




Loading…
Cancel
Save