Skip to content

Commit

Permalink
emotelist
Browse files Browse the repository at this point in the history
  • Loading branch information
slugalisk committed Jul 21, 2024
1 parent ed94fad commit 4234546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/emotelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ table.appendChild(thead);
Object.entries(emoteCreators.default).sort(([a], [b]) => a.localeCompare(b)).forEach(([name, creators]) => {
const row = document.createElement('tr');
table.appendChild(row);
[name, creators.createdby, creators.october, creators.december].forEach((creator) => {
[name, creators.createdby, creators.october, creators.december, creators.lotr].forEach((creator) => {
const col = document.createElement('td');
col.innerText = creator;
if (!creator) {
Expand Down

0 comments on commit 4234546

Please sign in to comment.