From cd5e4ef3b78fff709ceafb96b1609b8296fb1b12 Mon Sep 17 00:00:00 2001 From: Joshua Barretto Date: Thu, 23 Apr 2020 15:14:42 +0100 Subject: [PATCH] Better path colour on map, typo fixes --- assets/common/items/coconut.ron | 6 +++--- world/src/sim/map.rs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/common/items/coconut.ron b/assets/common/items/coconut.ron index 76d3212e39..219af26991 100644 --- a/assets/common/items/coconut.ron +++ b/assets/common/items/coconut.ron @@ -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, )), ), diff --git a/world/src/sim/map.rs b/world/src/sim/map.rs index d37e5641a5..69e22466da 100644 --- a/world/src/sim/map.rs +++ b/world/src/sim/map.rs @@ -298,7 +298,7 @@ impl MapConfig { }; let rgba = if is_path { - (0x20, 0x19, 0x13, 0xFF) + (0x37, 0x29, 0x23, 0xFF) } else { rgba };