From 025e248bad1bdf17590f90209028ef20ec5687e1 Mon Sep 17 00:00:00 2001 From: Hyojin Ahn Date: Wed, 22 Apr 2026 12:29:16 -0400 Subject: [PATCH] =?UTF-8?q?v1.1.16=20-=20[ORDER]=20Ghost=20=EC=B2=B4?= =?UTF-8?q?=ED=81=AC=20=EB=A1=9C=EC=A7=81=20=EB=B2=84=EA=B7=B8=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=20(fixed).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public_html/assets/api/daily.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/public_html/assets/api/daily.php b/public_html/assets/api/daily.php index e3e3e7c..3019d4e 100644 --- a/public_html/assets/api/daily.php +++ b/public_html/assets/api/daily.php @@ -666,7 +666,13 @@ class DailyService extends CONF { // -------------------------------------------------- // 0) Ghost Check // -------------------------------------------------- - if ($thisQuantity < 10 && $lastQuantity < 10 && $isTop !== 'G') { + if ( + $thisQuantity > 0 && + $lastQuantity > 0 && + $thisQuantity < 10 && + $lastQuantity < 10 && + $isTop !== 'G' + ) { $updateFields[] = "c_is_top = 'G'"; }