From 47fb60e1c9be768385d4a3fc0e8efdb2c687fd8d Mon Sep 17 00:00:00 2001 From: Peisong Xiao Date: Wed, 24 Jul 2024 13:46:41 -0400 Subject: [PATCH] fixed constants for gold --- src/constants.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/constants.h b/src/constants.h index dc4b6ef..61ecc7c 100644 --- a/src/constants.h +++ b/src/constants.h @@ -162,10 +162,10 @@ static const int RETURN_PANICKED = 1; static const int COLOR_BLACK_ON_WHITE = 8; -static const int GOLD_NORMAL = 6; -static const int GOLD_SMALL = 7; -static const int GOLD_MERCHANT = 8; -static const int GOLD_DRAGON = 9; +static const int GOLD_NORMAL = 1; +static const int GOLD_SMALL = 2; +static const int GOLD_MERCHANT = 4; +static const int GOLD_DRAGON = 6; static const size_t WHAT_ENEMY = 1 << 29; static const size_t WHAT_WALL = 1 << 30;