Better path colour on map, typo fixes

This commit is contained in:
Joshua Barretto 2020-04-23 15:14:42 +01:00
parent 444f2ecb45
commit cd5e4ef3b7
2 changed files with 4 additions and 4 deletions

View File

@ -1,12 +1,12 @@
Item(
name: "Coconut",
description: "Reliable Source of water and fat.
description: "Reliable source of water and fat.
Restores 20 Health.",
Restores 30 health.",
kind: Consumable(
kind: Coconut,
effect: Health((
amount: 20,
amount: 30,
cause: Item,
)),
),

View File

@ -298,7 +298,7 @@ impl MapConfig {
};
let rgba = if is_path {
(0x20, 0x19, 0x13, 0xFF)
(0x37, 0x29, 0x23, 0xFF)
} else {
rgba
};