Made trick questions appear only 25% of the time.

This commit is contained in:
doncr 2017-04-29 01:11:27 +01:00
parent c070e649ff
commit 4aa38c75eb

View File

@ -1320,6 +1320,12 @@ $('window').ready(function() {
phrase: transformation.phrase, phrase: transformation.phrase,
tags: transformation.tags.concat(["trick"]) tags: transformation.tags.concat(["trick"])
}); });
// Cheap trick to make trick questions appear on average 25% of the time
// instead of 50%. I'll fix this later *cough*.
trick_forms.push(transformation);
trick_forms.push(transformation);
}); });
transformations = transformations.concat(trick_forms); transformations = transformations.concat(trick_forms);