"폭탄을 사용한 상황에서 폭탄 그림 패를 연타할 경우, 패 4장이 겹친 상태에서 더이상 진행되지 않고 멈춤 (뻗음)

(우측 예시 상태로 진행 불가 ▶ )

단, 이 상태에서 엿보기는 가능"
This commit is contained in:
Ino 2025-09-18 03:31:38 +09:00
parent 565a261fb8
commit ff68c7717a
6 changed files with 11 additions and 6 deletions

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: cdd4f48712d178f4b807914f2ac9f90c guid: be474b00c7134174b88a1f4dd1f5b3a8
labels: labels:
- gvh - gvh
- gvh_version-9.5.0 - gvh_version-9.5.0

View File

@ -34,8 +34,11 @@ ibk 앱에서 휴대폰 본인 인증 시 휴대폰 번호 변경하는 방법
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
내 돈이 - 가 됨 내 돈이 - 가 됨
구글 및 원스토어 이미지 분기 처리?
구글 및 원스토어 아이콘 분기 처리? 파이어 베이스 디버그 뷰
adb shell setprop debug.firebase.analytics.app com.fgb.randomgfgostop
adb shell setprop debug.firebase.analytics.app .none.

View File

@ -1 +1 @@
10 11

View File

@ -341,7 +341,8 @@ public class CardSlot : MonoBehaviour, IPointerClickHandler, IPointerDownHandler
{ {
if (CardType != ECardType.Max && LocationType == ECardLocationType.Player_Hand && GameManager.UI.IsAnyPopupOpened() == false) if (CardType != ECardType.Max && LocationType == ECardLocationType.Player_Hand && GameManager.UI.IsAnyPopupOpened() == false)
{ {
GamePanel.Instance.Discard(this); if (GamePanel.Instance.DiscardisNull())
GamePanel.Instance.Discard(this);
} }
} }

View File

@ -10,7 +10,7 @@ public partial class GamePanel : MonoBehaviour
#region Statics #region Statics
public static void LogicalError(string message) public static void LogicalError(string message)
{ {
throw new System.Exception(message); Debug.LogError(message);
} }
#endregion #endregion

View File

@ -1060,6 +1060,7 @@ public partial class GamePanel : MonoBehaviour
} }
public void Discard(CardSlot slot) => _discardSlot = slot; public void Discard(CardSlot slot) => _discardSlot = slot;
public bool DiscardisNull() { return _discardSlot == null; }
private void BringOtherPlayersPeeCard(int num, bool isPlayer) private void BringOtherPlayersPeeCard(int num, bool isPlayer)
{ {