mirror of
https://github.com/PretendoNetwork/splatoon.git
synced 2026-09-12 05:15:22 -05:00
fix(secure): hopefully fix the error (thanks dani)
This commit is contained in:
@@ -87,15 +87,12 @@ func compareSearchCriteria[T ~uint16 | ~uint32](original T, search string) bool
|
||||
}
|
||||
}
|
||||
|
||||
func cleanupSearchMatchmakeSession(matchmakeSession *matchmakingtypes.MatchmakeSession) {
|
||||
matchmakeSession.Attributes.DeleteIndex(1);
|
||||
matchmakeSession.Attributes.DeleteIndex(4);
|
||||
}
|
||||
|
||||
func cleanupMatchmakeSessionSearchCriteriasHandler(searchCriterias *types.List[*matchmakingtypes.MatchmakeSessionSearchCriteria]) {
|
||||
fmt.Printf("%+v\n", searchCriterias)
|
||||
fmt.Printf("AAAAAAA")
|
||||
}
|
||||
func cleanupMatchmakeSessionSearchCriteriasHandler(searchCriterias *types.List[*match_making_types.MatchmakeSessionSearchCriteria]) {
|
||||
for _, searchCriteria := range searchCriterias.Slice() {
|
||||
searchCriteria.Attribs.SetIndex(1, "")
|
||||
searchCriteria.Attribs.SetIndex(4, "")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
func gameSpecificMatchmakeSessionSearchCriteriaChecksHandler(searchCriteria *matchmakingtypes.MatchmakeSessionSearchCriteria, matchmakeSession *matchmakingtypes.MatchmakeSession) bool {
|
||||
|
||||
Reference in New Issue
Block a user