Skip to content

Commit

Permalink
init health to 100
Browse files Browse the repository at this point in the history
ensure a minimum score of 1 ``with init_creature_scores`` for invalid creature
  • Loading branch information
walt253 authored Nov 25, 2024
1 parent 4c3f0d9 commit d6dba2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config_creature.c
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ void init_creature_model_stats(void)
crstat = creature_stats_get(i);
crconf = &game.conf.crtr_conf.model[i];
// Attributes block.
crstat->health = 1;
crstat->health = 100;
crstat->heal_requirement = 1;
crstat->heal_threshold = 1;
crstat->strength = 1;
Expand Down

0 comments on commit d6dba2d

Please sign in to comment.