|
@@ -593,7 +593,7 @@ class FightProc {
|
|
|
switch ($index) {
|
|
|
case 1:
|
|
|
$ts = $gateMo->first_ts1 * 60;
|
|
|
- if ($gateInfo->MaxSeconds >= $ts) {
|
|
|
+ if ($gateInfo->MaxSeconds >= $ts || $gateInfo->pass > 0) {
|
|
|
$tag = true;
|
|
|
}
|
|
|
$mask = 1;
|
|
@@ -601,7 +601,7 @@ class FightProc {
|
|
|
break;
|
|
|
case 2:
|
|
|
$ts = $gateMo->first_ts2 * 60;
|
|
|
- if ($gateInfo->MaxSeconds >= $ts) {
|
|
|
+ if ($gateInfo->MaxSeconds >= $ts || $gateInfo->pass > 0) {
|
|
|
$tag = true;
|
|
|
}
|
|
|
$mask = 2;
|