This commit is contained in:
GotPPay
2017-10-18 20:19:53 +02:00
parent fb8ab4814f
commit 4c4b1fe135
2 changed files with 1 additions and 4 deletions

View File

@@ -1,2 +1,2 @@
PEOPLE_DB=https://docs.google.com/spreadsheets/d/1s4Ytz7mf-YpszVTMTTrYd5iG_dsTGjrCpDQbpIx7zkU/edit#gid=0
PAIRS_LIST=https://docs.google.com/spreadsheets/d/1JXtDjajJLZb_iXvDYfBEVYdCfehF_URHeeO7_hBXLrI/edit#gid=0
PAIRS_LIST=https://docs.google.com/spreadsheets/d/1gPuRhTry3YoJ_ibI2BfL1ue2_YLlhtW56OP39ADJY_4/edit#gid=0

View File

@@ -171,8 +171,6 @@ function MakePairs(callback){
pairs.filter((pair)=>{
if ((pair.name1==names[i] && pair.name2==names[j])||(pair.name1==names[j] && pair.name2==names[i])){
console.log("Par pronaden !");
console.log(names[i] + " i " + names[j]);
found=true;
return;
}
@@ -181,7 +179,6 @@ function MakePairs(callback){
if (!found){
usedNames.filter((name)=>{
if (names[i] === name || names[j] === name){
console.log("Ime vec koristeno");
found=true;
return;
}