Improved fights between player and monster

This commit is contained in:
2024-10-21 08:26:51 +02:00
parent cefb0cc5f2
commit b3d85ac7b3
4 changed files with 47 additions and 28 deletions

View File

@@ -83,7 +83,7 @@ impl Artifact for Potion {
let new = player.get_life();
messages.insert(
0,
format!("picked up potion and gained {} hp.", new - old).to_string(),
format!("picked up potion and gained {} health.", new - old).to_string(),
);
self.health = 0;
} else {