[Bug Fix] Fix #show group_info Popup (#3605)

# Notes
- Wasn't using `DialogueWindow::TableCell` so they weren't showing up.
- Fixed `red1` to `red_1` so it shows.
This commit is contained in:
Alex King
2023-10-04 14:40:05 -04:00
committed by GitHub
parent f053cd3b56
commit 7db7631308
2 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ void ShowZoneData(Client *c, const Seperator *sep)
fmt::format(
"{} {} {}",
DialogueWindow::ColorMessage(
"red1",
"red_1",
std::to_string(zone->newzone_data.fog_red[fog_index])
),
DialogueWindow::ColorMessage(
@@ -206,7 +206,7 @@ void ShowZoneData(Client *c, const Seperator *sep)
DialogueWindow::TableCell(
zone->newzone_data.suspend_buffs ?
DialogueWindow::ColorMessage("forest_green", "Y") :
DialogueWindow::ColorMessage("red1", "N")
DialogueWindow::ColorMessage("red_1", "N")
)
);