From 21359386be07ee777e98d42d21972aa29b3214ca Mon Sep 17 00:00:00 2001 From: Atemo Date: Tue, 25 Jun 2024 17:27:33 +0200 Subject: [PATCH] Exported constants for setdialogalign script command (#8458) Follow-up https://github.com/rathena/rathena/commit/eb308dcad295faf74fe63f55c69a389c00acfb0b --- src/map/script_constants.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index f998ec2160..cc30045475 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -11073,6 +11073,14 @@ export_constant(ELEMINFO_GAMEID); export_constant(ELEMINFO_CLASS); + /* setdialogalign script command */ + export_constant(DIALOG_ALIGN_LEFT); + export_constant(DIALOG_ALIGN_RIGHT); + export_constant(DIALOG_ALIGN_CENTER); + export_constant(DIALOG_ALIGN_TOP); + export_constant(DIALOG_ALIGN_MIDDLE); + export_constant(DIALOG_ALIGN_BOTTOM); + /* refine types */ export_constant(REFINE_TYPE_ARMOR); export_constant(REFINE_TYPE_WEAPON);