bool isGay(person me, person he) {
if (areSwordFighting(me, he)) {
if (dickIsHard(he) && dickIsSoft(me)) {
getPanic(me);
getFlee(me);
return false;
} else if (dickIsHard(me) && dickIsSoft(he)) {
getShame(me);
getFlee(me);
return false;
…