Browse Source

Fixed wrong index check in clif_parse_laphine_synthesis (#7832)

Jittapan Pluemsumran 1 năm trước cách đây
mục cha
commit
b6d6f09fd7
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/map/clif.cpp

+ 1 - 1
src/map/clif.cpp

@@ -23297,7 +23297,7 @@ void clif_parse_laphine_synthesis( int fd, map_session_data* sd ){
 			return;
 		}
 
-		if( sd->inventory_data[i] == nullptr ){
+		if( sd->inventory_data[index] == nullptr ){
 			return;
 		}