by Merk » Mon Jul 24, 2006 12:33 pm
Code: Select all
elseif object is living
{
print CThe(object); MatchPlural(object, "doesn't", "don't");
" let ";
The(player)
if object.pronouns #2
{
" search ";
if object.pronouns #2
print object.pronouns #2;
else
print object.pronoun;
}
print "."
}
In the part where it checks for object.pronouns #2, it has an interior part that again checks for object.pronoun #2. Since it can't be in that block otherwise, the second check (and resulting "else") seems unnecessary...
[code]
elseif object is living
{
print CThe(object); MatchPlural(object, "doesn't", "don't");
" let ";
The(player)
if object.pronouns #2
{
" search ";
if object.pronouns #2
print object.pronouns #2;
else
print object.pronoun;
}
print "."
}
[/code]
In the part where it checks for object.pronouns #2, it has an interior part that again checks for object.pronoun #2. Since it can't be in that block otherwise, the second check (and resulting "else") seems unnecessary...