mirror of
https://github.com/chaoticbackup/chaoticbackup.github.io.git
synced 2026-03-21 17:24:14 -05:00
change non loyal to include all card types
This commit is contained in:
parent
00028951a0
commit
0fe6c96d5e
File diff suppressed because one or more lines are too long
|
|
@ -1,12 +1,12 @@
|
|||
import React from "react";
|
||||
import {useLocation, useNavigate} from 'react-router-dom';
|
||||
import { useLocation, useNavigate } from 'react-router-dom';
|
||||
|
||||
const RouteElement = ({ component: RouteComponent, ...props }) => {
|
||||
const location = useLocation();
|
||||
const navigate = useNavigate();
|
||||
return (
|
||||
<RouteComponent location={location} navigate={navigate} {...props} />
|
||||
);
|
||||
};
|
||||
const location = useLocation();
|
||||
const navigate = useNavigate();
|
||||
return (
|
||||
<RouteComponent location={location} navigate={navigate} {...props} />
|
||||
);
|
||||
};
|
||||
|
||||
export default RouteElement;
|
||||
export default RouteElement;
|
||||
|
|
|
|||
|
|
@ -320,11 +320,11 @@ export default function search_api(input) {
|
|||
|
||||
// Non Loyal
|
||||
if (input.mull.mixed) {
|
||||
attackResults = attackResults.limit(0);
|
||||
// attackResults = attackResults.limit(0);
|
||||
creatureResults = creatureResults.find({ 'gsx$loyal': { '$lte': 0 }});
|
||||
battlegearResults = battlegearResults.find({ 'gsx$loyal': { '$lte': 0 }});
|
||||
mugicResults = mugicResults.limit(0);
|
||||
locationResults = locationResults.limit(0);
|
||||
// mugicResults = mugicResults.limit(0);
|
||||
// locationResults = locationResults.limit(0);
|
||||
}
|
||||
|
||||
// Sets
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user