more variable renames for FPlayer --> UPlayer

This commit is contained in:
Olof Larsson
2013-04-22 19:57:11 +02:00
parent 19f9834210
commit bc194efc9b
15 changed files with 104 additions and 163 deletions

View File

@ -40,18 +40,18 @@ public class RelationUtil
}
else if (that instanceof UPlayer)
{
UPlayer fplayerthat = (UPlayer) that;
UPlayer uplayerthat = (UPlayer) that;
if (that == me)
{
ret = "you";
}
else if (thatFaction == myFaction)
{
ret = fplayerthat.getNameAndTitle();
ret = uplayerthat.getNameAndTitle();
}
else
{
ret = fplayerthat.getNameAndTag();
ret = uplayerthat.getNameAndTag();
}
}