From 0852468b8827ebce67e3808e0bfee2f024f5cc1e Mon Sep 17 00:00:00 2001 From: Noudess Date: Mon, 25 Mar 2019 17:54:17 -0400 Subject: [PATCH] Add constants for waypoints --- common/emu_constants.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/common/emu_constants.h b/common/emu_constants.h index ee8fdfcee..72ddfa11b 100644 --- a/common/emu_constants.h +++ b/common/emu_constants.h @@ -307,6 +307,14 @@ namespace EQEmu } // namespace bug + namespace waypoints { + enum WaypointStatus : int { + wpsRoamBoxPauseInProgress = -3, + wpsQuestControlNoGrid = -2, + wpsQuestControlGrid = -1 + }; + } // waypoint_status behavior + } /*EQEmu*/ #endif /*COMMON_EMU_CONSTANTS_H*/