From a52d36a90fcdfb4029d29f54240cf02aa9939856 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Tue, 16 Jul 2019 02:39:11 +0200 Subject: [PATCH] Correct value of DLRG_CHAMBER --- enums.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enums.h b/enums.h index f501ba18b..5c4b712dc 100644 --- a/enums.h +++ b/enums.h @@ -2882,6 +2882,6 @@ typedef enum action_id { typedef enum dlrg_flag { DLRG_HDOOR = 0x01, DLRG_VDOOR = 0x02, - DLRG_CHAMBER = 0x04, + DLRG_CHAMBER = 0x40, DLRG_PROTECTED = 0x80, -} dlrg_flag; \ No newline at end of file +} dlrg_flag;