avoid an unneccessary abbreviation

This commit is contained in:
Matthias Mailänder
2016-01-24 17:16:46 +01:00
parent f709ef891a
commit 38625ec6f8
2 changed files with 2 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ namespace OpenRA.Mods.RA.Traits
public GpsWatcher(Player owner) { Owner = owner; }
public void GpsRem(Actor atek)
public void GpsRemove(Actor atek)
{
actors.Remove(atek);
RefreshGps(atek);

View File

@@ -63,7 +63,7 @@ namespace OpenRA.Mods.RA.Traits
void RemoveGps(Actor self)
{
// Extra function just in case something needs to be added later
owner.GpsRem(self);
owner.GpsRemove(self);
}
public void StanceChanged(Actor self, Player a, Player b, Stance oldStance, Stance newStance)