From 76a87406448cd994c3d87057574ced6b530da761 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Thu, 9 Jun 2022 01:53:19 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9C=A0=EB=8B=88=ED=81=AC=20=EA=B2=BD?= =?UTF-8?q?=EB=A7=A4=EC=8B=9C=2010=ED=8F=AC=EC=9D=B8=ED=8A=B8=20=EB=8D=94?= =?UTF-8?q?=20=EB=86=92=EC=95=84=EC=95=BC=20=ED=95=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/Auction.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hwe/sammo/Auction.php b/hwe/sammo/Auction.php index 349855f8..07bbf5e1 100644 --- a/hwe/sammo/Auction.php +++ b/hwe/sammo/Auction.php @@ -281,8 +281,8 @@ abstract class Auction $general = $this->general; $highestBid = $this->getHighestBid(); - if ($highestBid !== null && $amount <= $highestBid->amount) { - return '현재입찰가보다 높게 입찰해야 합니다.'; + if ($highestBid !== null && $amount < $highestBid->amount + 10) { + return '현재입찰가보다 10 포인트 높게 입찰해야 합니다.'; } $myPrevBid = $this->getMyPrevBid();