[Fix] Checkmarks and X characters in popup messages (#3041)

# Notes
- Due to changing the popups to use strings, these show as squares, instead of the proper character.
This commit is contained in:
Alex King
2023-03-05 22:35:52 -05:00
committed by GitHub
parent 16a8f88ae5
commit 2e55da2b2d
3 changed files with 14 additions and 14 deletions
+5 -5
View File
@@ -45,7 +45,7 @@ void command_ginfo(Client *c, const Seperator *sep)
if (target_group->membername[group_member][0] == '\0') {
continue;
}
bool is_assist = target_group->MemberRoles[group_member] & RoleAssist;
bool is_puller = target_group->MemberRoles[group_member] & RolePuller;
bool is_tank = target_group->MemberRoles[group_member] & RoleTank;
@@ -61,10 +61,10 @@ void command_ginfo(Client *c, const Seperator *sep)
target_group->membername[group_member]
)
),
target_group->members[group_member] ? "<c \"#00FF00\"></c>" : "<c \"#F62217\"></c>",
is_assist ? "<c \"#00FF00\"></c>" : "<c \"#F62217\"></c>",
is_puller ? "<c \"#00FF00\"></c>" : "<c \"#F62217\"></c>",
is_tank ? "<c \"#00FF00\"></c>" : "<c \"#F62217\"></c>"
target_group->members[group_member] ? "<c \"#00FF00\">Y</c>" : "<c \"#F62217\">N</c>",
is_assist ? "<c \"#00FF00\">Y</c>" : "<c \"#F62217\">N</c>",
is_puller ? "<c \"#00FF00\">Y</c>" : "<c \"#F62217\">N</c>",
is_tank ? "<c \"#00FF00\">Y</c>" : "<c \"#F62217\">N</c>"
);
}