@@ -16,13 +16,19 @@ public class Configuration extends Config {
1616 @ Switch (name = "Auto Party Chat" , subcategory = "Joining" , description = "Enter party chat once joined practice." )
1717 public static boolean autoPartyChat = true ;
1818
19+ @ Switch (name = "Auto GG" , subcategory = "Other" , description = "Send specified text once a game ended." )
20+ public static boolean autoGG = false ;
21+
22+ @ Switch (name = "Auto GG Text" , subcategory = "Other" , description = "Specify what text to send." )
23+ public static String autoGGText = "gg" ;
24+
1925 @ Switch (name = "Disable Player List" , subcategory = "Other" , description = "Prevent accidentally tapping tab and lag your pc." )
2026 public static boolean disablePlayerList = true ;
2127
22- @ Switch (name = "Height Overlay" , category = "Height Overlay" , description = "Make wools and terracottas darker at height limit." )
28+ @ Switch (name = "Height Overlay" , category = "Height Overlay" , subcategory = "Height Overlay" , description = "Make wools and terracottas darker at height limit." )
2329 public static boolean heightLimitOverlay = true ;
2430
25- @ Slider (name = "Height Overlay Darkness" , category = "Height Overlay" , min = 0 , max = 10 , step = 1 , description = "Adjust the darkness of height limit overlay." )
31+ @ Slider (name = "Height Overlay Darkness" , category = "Height Overlay" , subcategory = "Height Overlay" , description = "Adjust the darkness of height limit overlay." , min = 0 , max = 10 , step = 1 )
2632 public static int heightLimitDarkness = 3 ;
2733
2834 @ HUD (name = "Height Limit Distance HUD" , category = "Height Limit Distance HUD" )
0 commit comments