lvjincheng %!s(int64=3) %!d(string=hai) anos
pai
achega
934d8b8a8b

+ 1 - 1
Assets/BowArrow/Scripts/Game/ArmBow.cs

@@ -151,7 +151,7 @@ public class ArmBow : MonoBehaviour
     }
     }
 
 
     public void ADS_fire() {
     public void ADS_fire() {
-        if (!IsCanShoot() || banShoot || GameMgr.ins.gamePause || banLogic) return;
+        if (!IsCanShoot() || banShoot || GameMgr.ins.gamePause || banLogic || GameMgr.ins.gameOver) return;
         GameMgr.ins.gameMode.onBowShoot();
         GameMgr.ins.gameMode.onBowShoot();
         this.phase = 3;
         this.phase = 3;
         shoot();
         shoot();

+ 2 - 2
Assets/JC/Untiy/Picker/DatePicker/DatePickerGroup.cs

@@ -19,8 +19,8 @@ namespace JC.Unity.Picker
         void Awake()
         void Awake()
         {
         {
             minDate = new DateTime(1950, 1, 1, 0, 0, 0);
             minDate = new DateTime(1950, 1, 1, 0, 0, 0);
-            maxDate = new DateTime(2050, 1, 1, 0, 0, 0);
-            selectDate = DateTime.Now;
+            maxDate = DateTime.Now;
+            selectDate = new DateTime(2000, 1, 1, 0, 0, 0);
             Init();
             Init();
         }
         }
         void Start()
         void Start()