浏览代码

oops, forgot one thing

Matej Pristak 11 年之前
父节点
当前提交
d98cf33cbb
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      src/map/vending.c

+ 2 - 0
src/map/vending.c

@@ -347,6 +347,8 @@ bool vending_openvending(struct map_session_data* sd, const char* message, const
 
 		//player just moved item to cart and we don't have the correct cart ID yet
 		if (sd->status.cart[sd->vending[i].index].id == 0) {
+			struct item_data *idb = itemdb_search(sd->status.cart[index].nameid);
+			char msg[256];
 			snprintf(msg, 256, "Item %s is not yet saved. Please re-log in order to correctly save your vending.", idb->jname);
 			clif_displaymessage(sd->fd, msg);
 			clif_skill_fail(sd, MC_VENDING, USESKILL_FAIL_LEVEL, 0);