Nickname duping

	if (slave.energy > 95) {
		if (slave.anus > 1) {
			_qualifiedNicknames.push("buttslut");
		}
		_qualifiedNicknames.push("cumslut");
		_qualifiedNicknames.push("humiliation");
		_qualifiedNicknames.push("submissive");
	}
	if (slave.fetishKnown === 1 && slave.fetishStrength > 60) {
		switch (slave.fetish) {
			case "buttslut":
				if (slave.anus > 0) {
					_qualifiedNicknames.push("buttslut");
				} else {
					_qualifiedNicknames.push("butt toy");
				}
				break;
			case "cumslut":
				_qualifiedNicknames.push("cumslut");
				break;
			case "humiliation":
				_qualifiedNicknames.push("humiliation");
				break;
			case "submissive":
				_qualifiedNicknames.push("submissive");
		}
	}

This is the only section I can find that generates duplicates, and I'm wondering if it should be left as is or simplified. I like the second part, focused on fetish. But the earlier almost feels like vanilla leftovers. Why are we adding cumslut without a gate, etc.

I feel the block gated by energy should just be removed, but thought I'd ask before making an MR.

edit: as a second point, I think the fetishStrength gate is enough. We don't need to "know" their fetish to see them sucking down cum, etc.

Edited by lowercasedonkey