瀏覽代碼

Fixed msvc warning casting int to bool in getequiprefinecost (#2429)

* Fixes #2428.
Thanks to @vstumpf and @Haikenz!
Vincent Stumpf 7 年之前
父節點
當前提交
70f1d86404
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/map/script.cpp

+ 1 - 1
src/map/script.cpp

@@ -23590,7 +23590,7 @@ BUILDIN_FUNC(getequiprefinecost) {
 			weapon_lv = REFINE_TYPE_SHADOW;
 	}
 
-	script_pushint(st, status_get_refine_cost(weapon_lv, type, info));
+	script_pushint(st, status_get_refine_cost(weapon_lv, type, info != 0));
 
 	return SCRIPT_CMD_SUCCESS;
 }