Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Roll20 recently (a while back now, in all honesty) reversed the order the status markers get rendered. They're now drawn in the "correct," order, so we no longer need to reverse our symbols.
  • Loading branch information
TheGiddyLimit authored Apr 18, 2019
1 parent a247ef4 commit 2423637
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Flight/3.4/Flight.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ bshields.flight = (function() {
markerStr = _.chain(num.toString().split(''))
.map((d) => `${marker}@${d}`)
.value()
.reverse()
.join(',');
}

Expand Down Expand Up @@ -98,4 +97,4 @@ on('ready', function() {
'use strict';

bshields.flight.registerEventHandlers();
});
});

0 comments on commit 2423637

Please sign in to comment.