fix factionvehicle tostring

This commit is contained in:
hydrant
2019-05-16 15:09:00 +02:00
parent aa81fa95a4
commit 9e82ab81c0

View File

@@ -27,7 +27,7 @@ namespace ReallifeGamemode.Server.Entities
public override string ToString()
{
return "Fraktions Fahrzeug | Fraktion: " + Faction.Name;
return "Fraktions Fahrzeug | Fraktion: " + GetFaction().Name;
}
}
}