Skip to content

Commit 40a40f9

Browse files
committed
Modded Challenges being forgotten as usual
Add the Challenge content tag to the modman
1 parent b26e8b2 commit 40a40f9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/modmanager.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -647,6 +647,14 @@ void ModManagerFrame::LoadModExtraData() {
647647
style.SetBackgroundColour(wxColor("White"));
648648
extraInfoCtrl->WriteText(wxString::FromUTF8(" "));
649649
}
650+
if (selectedMod.extradata.Challenges) {
651+
style.SetBackgroundColour(wxColor(0, 146, 255)); //that part of an eraser that supposedly deletes ink but doesnt actually do shit
652+
extraInfoCtrl->BeginStyle(style);
653+
extraInfoCtrl->WriteText(wxString::FromUTF8("<Challng>"));
654+
extraInfoCtrl->EndStyle();
655+
style.SetBackgroundColour(wxColor("White"));
656+
extraInfoCtrl->WriteText(wxString::FromUTF8(" "));
657+
}
650658
if (selectedMod.extradata.Music) {
651659
style.SetBackgroundColour(wxColor(173, 101, 240)); //parpel
652660
extraInfoCtrl->BeginStyle(style);

0 commit comments

Comments
 (0)