R3E live stream overlay editing(current standings)

Hi, I have changed a few things in the stream overlay for R3E but how to edit the current standings so it shows full lastnames, like ''Larsen'' instead of ''LAR'' as its by default?... Have seen on RaceDepartment streams that they have changed it so show full names, so hope someone here can help
 
Go to ->

spectator\assets\components\widgets\currentStandings

open currentStandings.jsx

Then find the fixName: function (name) in that file

Replace that section with with:

fixName: function(name) {
var parts = name.split(' ');
return parts[parts.length-1].substr(0, 15).toUpperCase();
 
Back
Top