mirror of
https://github.com/ZetaKebab/japanese-conjugation-drill.git
synced 2025-06-25 07:07:37 +00:00
Made trick questions appear only 25% of the time.
This commit is contained in:
@ -1320,6 +1320,12 @@ $('window').ready(function() {
|
||||
phrase: transformation.phrase,
|
||||
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);
|
||||
|
Reference in New Issue
Block a user