From 063892f20aa0bac1a806b3f7a35bf1128ce24642 Mon Sep 17 00:00:00 2001 From: rAthenaAPI Date: Thu, 14 Feb 2019 11:05:43 +0100 Subject: [PATCH] Effect State Update --- src/map/script_constants.hpp | 1 + src/map/status.hpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index b5386b6b23..ff0572ccca 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -2376,6 +2376,7 @@ /// Do not modify code below this, until the end of the API hook, since it will be automatically generated again /// @APIHOOK_START(EFST_CONST) export_constant(EFST_BLANK); + export_constant(EFST_PROVOKE); export_constant(EFST_ENDURE); export_constant(EFST_TWOHANDQUICKEN); export_constant(EFST_CONCENTRATION); diff --git a/src/map/status.hpp b/src/map/status.hpp index bec58fbb4f..d122525435 100644 --- a/src/map/status.hpp +++ b/src/map/status.hpp @@ -872,8 +872,8 @@ enum efst_types : short{ /// Do not modify code below this, until the end of the API hook, since it will be automatically generated again /// @APIHOOK_START(EFST_ENUM) EFST_BLANK = -1, - - EFST_ENDURE = 1, + EFST_PROVOKE, + EFST_ENDURE, EFST_TWOHANDQUICKEN, EFST_CONCENTRATION, EFST_HIDING,