Skip to content

Commit

Permalink
Merge pull request #14 from mpconley/master
Browse files Browse the repository at this point in the history
Enhance: Necromancer Emoji Change
  • Loading branch information
mpconley authored Aug 17, 2024
2 parents 12a5a97 + bed57a1 commit c17805f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"package": "StickMUD",
"title": "StickMUDMudletGUI",
"description": "The official graphical user interface for Mudlet (https://mudlet.org) for StickMUD.",
"version": "61",
"version": "62",
"author": "Tamarindo@StickMUD",
"icon": "https://www.stickmud.com/wp-content/uploads/2020/12/stick-siteicon.png",
"outputFile": true
Expand Down
4 changes: 2 additions & 2 deletions src/scripts/GMCP/PlayersScrollBox/GamePlayersList.lua
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function GamePlayersList()
elseif v.guild == "mage" then
gamePlayersList = gamePlayersList .. "🧙"
elseif v.guild == "necromancer" then
gamePlayersList = gamePlayersList .. "🧟"
gamePlayersList = gamePlayersList .. "💀"
elseif v.guild == "ninja" then
gamePlayersList = gamePlayersList .. "🥷"
elseif v.guild == "priest" then
Expand Down Expand Up @@ -108,7 +108,7 @@ function GamePlayersList()
elseif v.guild == "mage" then
gamePlayersList = gamePlayersList .. "🧙"
elseif v.guild == "necromancer" then
gamePlayersList = gamePlayersList .. "🧟"
gamePlayersList = gamePlayersList .. "💀"
elseif v.guild == "ninja" then
gamePlayersList = gamePlayersList .. "🥷"
elseif v.guild == "priest" then
Expand Down

0 comments on commit c17805f

Please sign in to comment.