From fcca1cd79477c2baf415688172446a68c2f104f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=92=8A?= Date: Wed, 28 Jan 2026 10:55:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=81=8B=E4=BB=99=E4=BC=A0=E5=A5=87=20?= =?UTF-8?q?=E6=90=AC=E7=A7=BB=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/model/Monster.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/api/model/Monster.php b/application/api/model/Monster.php index fadfec95..933208e8 100644 --- a/application/api/model/Monster.php +++ b/application/api/model/Monster.php @@ -613,7 +613,7 @@ class Monster extends Model $user_monster_win_log = db::name('user_monster_win_log')->where('uid', $uid)->where('mid', $v['id'])->find(); if($user_monster_win_log){ $v['is_join'] = 1; - $gift_info = db::name('gift')->find($user_monster_win_log['win_gid']); + $gift_info = db::name('vs_gift')->find($user_monster_win_log['win_gid']); $v['gift_name'] = $gift_info['gift_name']; $v['base_image'] = localpath_to_netpath($gift_info['base_image']); $v['gift_price'] = $gift_info['gift_price'];