From b6053928c63eb8d0276d0456d65ad02b6be39e70 Mon Sep 17 00:00:00 2001 From: Hourier Date: Thu, 28 May 2020 22:51:53 +0900 Subject: [PATCH] [Refactor] #40399 Moved SV_FLASK_OIL from object1.h to sv-other-types.h --- src/object/object1.h | 3 --- src/object/sv-other-types.h | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/object/object1.h b/src/object/object1.h index b59e2213a..089878236 100644 --- a/src/object/object1.h +++ b/src/object/object1.h @@ -545,9 +545,6 @@ extern void torch_lost_fuel(object_type *o_ptr); #define SV_POTION_TSUYOSHI 65 #define SV_POTION_POLYMORPH 66 -/* The "sval" codes for TV_FLASK */ -#define SV_FLASK_OIL 0 - /* The "sval" codes for TV_FOOD */ #define SV_FOOD_POISON 0 #define SV_FOOD_BLINDNESS 1 diff --git a/src/object/sv-other-types.h b/src/object/sv-other-types.h index 3760c9103..d673411a4 100644 --- a/src/object/sv-other-types.h +++ b/src/object/sv-other-types.h @@ -20,3 +20,6 @@ #define SV_ROD_MIN_DIRECTION 12 /*!< この値以降の小項目IDを持ったロッドは使用時にターゲットを要求する / Special "sval" limit -- first "aimed" rod */ #define SV_CHEST_KANDUME 50 /*!< 箱アイテムの小項目ID: おもちゃのカンヅメ */ + +/* The "sval" codes for TV_FLASK */ +#define SV_FLASK_OIL 0 -- 2.11.0