From 796927ac61ee33d5a773515f6391b151e7560c22 Mon Sep 17 00:00:00 2001 From: wish Date: Tue, 20 Jun 2023 21:42:06 +1000 Subject: [PATCH] add PS3_TROP to constant courses --- common/mhfcourse/mhfcourse.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/mhfcourse/mhfcourse.go b/common/mhfcourse/mhfcourse.go index 13496119b..6b0936e45 100644 --- a/common/mhfcourse/mhfcourse.go +++ b/common/mhfcourse/mhfcourse.go @@ -66,7 +66,7 @@ func CourseExists(ID uint16, c []Course) bool { // GetCourseStruct returns a slice of Course(s) from a rights integer func GetCourseStruct(rights uint32) ([]Course, uint32) { - resp := []Course{{ID: 1}, {ID: 24}} + resp := []Course{{ID: 1}, {ID: 23}, {ID: 24}} s := Courses() slices.SortStableFunc(s, func(i, j Course) bool { return i.ID > j.ID