extra content

This commit is contained in:
wish
2023-03-12 02:09:36 +11:00
parent 9a42042686
commit 5761a38000
2 changed files with 8 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ var aliases = map[uint16][]string{
10: {"Hiden", "Secret"},
11: {"HunterSupport", "HunterAid", "Support", "Aid", "Royal"},
12: {"NBoost", "NetCafeBoost", "Boost"},
// 13-19 show up as (unknown)
20: {"DEBUG"},
21: {"COG_LINK_EXPIRED"},
22: {"360_GOLD"},
@@ -34,6 +35,7 @@ var aliases = map[uint16][]string{
27: {"HLRenewing", "HLR", "HLRenewal", "HLRenew", "CardHL"},
28: {"EXRenewing", "EXR", "EXRenewal", "EXRenew", "CardEX"},
29: {"Free"},
// 30 = Real NetCafe course
}
func (c Course) Aliases() []string {

View File

@@ -0,0 +1,6 @@
BEGIN;
-- Remove Trial Course from all users
UPDATE users SET rights = rights-2;
END;