diff --git a/diff/AFTER_char_item.cpp b/diff/AFTER_char_item.cpp index 7f899c0..ea8ffb0 100644 --- a/diff/AFTER_char_item.cpp +++ b/diff/AFTER_char_item.cpp @@ -928,7 +928,7 @@ bool CHARACTER::DoRefine(LPITEM item, bool bMoneyOnly) if (-1 == pos) { ChatPacket(CHAT_TYPE_INFO, LC_TEXT("소지품에 빈 공간이 없습니다.")); - return true; + return false; } #endif @@ -1222,7 +1222,7 @@ bool CHARACTER::DoRefineWithScroll(LPITEM item) if (-1 == pos) { ChatPacket(CHAT_TYPE_INFO, LC_TEXT("소지품에 빈 공간이 없습니다.")); - return true; + return false; } #endif @@ -1273,7 +1273,7 @@ bool CHARACTER::DoRefineWithScroll(LPITEM item) if (-1 == pos) { ChatPacket(CHAT_TYPE_INFO, LC_TEXT("소지품에 빈 공간이 없습니다.")); - return true; + return false; } #endif diff --git a/tutorial/Srcs-Server/game/src/char_item.cpp b/tutorial/Srcs-Server/game/src/char_item.cpp index 67ba2b9..93183c5 100644 --- a/tutorial/Srcs-Server/game/src/char_item.cpp +++ b/tutorial/Srcs-Server/game/src/char_item.cpp @@ -15,7 +15,7 @@ if (-1 == pos) { ChatPacket(CHAT_TYPE_INFO, LC_TEXT("You don't have enough inventory space.")); - return true; + return false; } #endif @@ -58,7 +58,7 @@ if (-1 == pos) { ChatPacket(CHAT_TYPE_INFO, LC_TEXT("You don't have enough inventory space.")); - return true; + return false; } #endif @@ -100,7 +100,7 @@ if (-1 == pos) { ChatPacket(CHAT_TYPE_INFO, LC_TEXT("You don't have enough inventory space.")); - return true; + return false; } #endif