diff --git a/files/helpers/sanitize.py b/files/helpers/sanitize.py index f426d322b..24457356d 100644 --- a/files/helpers/sanitize.py +++ b/files/helpers/sanitize.py @@ -879,7 +879,9 @@ def torture_queen(string, key): if string[-5:] == ', and': string = string[:-5] - random.seed(key) + if SITE == 'devrama.net': + random.seed(key) + if random.random() < PHRASE_CHANCE: girl_phrase = random.choice(GIRL_PHRASES) string = girl_phrase.replace("$", string)