From 01874769b9a997c844fbc7338ffcbffd377e9f5e Mon Sep 17 00:00:00 2001 From: Federico Cecchetto Date: Fri, 11 Mar 2022 22:07:16 +0100 Subject: [PATCH] Small change --- src/client/component/ui_scripting.cpp | 36 +++++++++++---------------- 1 file changed, 15 insertions(+), 21 deletions(-) diff --git a/src/client/component/ui_scripting.cpp b/src/client/component/ui_scripting.cpp index d58079cc..c4f6d06f 100644 --- a/src/client/component/ui_scripting.cpp +++ b/src/client/component/ui_scripting.cpp @@ -48,10 +48,8 @@ namespace ui_scripting { return hksi_lual_error_hook.invoke(s, formatted.data()); } - else - { - throw std::runtime_error(formatted); - } + + throw std::runtime_error(formatted); } int hksi_hks_error_stub(game::hks::lua_State* s, int a2) @@ -60,31 +58,27 @@ namespace ui_scripting { return hksi_hks_error_hook.invoke(s, a2); } - else - { - throw std::runtime_error("unknown error"); - } + + throw std::runtime_error("unknown error"); } - int lui_error_stub(game::hks::lua_State* s) + void lui_error_stub(game::hks::lua_State* s) { if (!error_hook_enabled) { - return lui_error_hook.invoke(s); + lui_error_hook.invoke(s); } - else + + const auto count = static_cast(s->m_apistack.top - s->m_apistack.base); + const auto arguments = get_return_values(count); + + std::string error_str = "LUI Error"; + if (count && arguments[0].is()) { - const auto count = static_cast(s->m_apistack.top - s->m_apistack.base); - const auto arguments = get_return_values(count); - - std::string error_str = "LUI Error"; - if (count && arguments[0].is()) - { - error_str = arguments[0].as(); - } - - throw std::runtime_error(error_str); + error_str = arguments[0].as(); } + + throw std::runtime_error(error_str); } void* hks_start_stub(char a1)