From 9124d5600f2b4a99bbfa6e5b54131d18dfe8ac48 Mon Sep 17 00:00:00 2001 From: rAthenaAPI Date: Wed, 27 Nov 2019 04:05:57 +0100 Subject: [PATCH] Effect State Update --- src/map/script_constants.hpp | 4 ++++ src/map/status.hpp | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index 01dd733197..70dd2b0715 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -3464,6 +3464,10 @@ export_constant(EFST_BIG_SCAR); export_constant(EFST_VIGOR); export_constant(EFST_PRESSURE); + export_constant(EFST_MD_Me_Potion); + export_constant(EFST_MD_Ma_Potion); + export_constant(EFST_MD_Ta_Potion); + export_constant(EFST_MD_Ra_Potion); /// @APIHOOK_END /// Do not modify code above this, since it will be automatically generated by the API again export_constant(EFST_MAX); diff --git a/src/map/status.hpp b/src/map/status.hpp index 711e81728f..6593713278 100644 --- a/src/map/status.hpp +++ b/src/map/status.hpp @@ -1987,6 +1987,11 @@ enum efst_types : short{ EFST_VIGOR, EFST_PRESSURE = 1180, + + EFST_MD_Me_Potion = 1185, + EFST_MD_Ma_Potion, + EFST_MD_Ta_Potion, + EFST_MD_Ra_Potion, /// @APIHOOK_END /// Do not modify code above this, since it will be automatically generated by the API again EFST_MAX,