@@ -55,8 +55,7 @@ public class Constants
55
55
public static KeyBinding KB_MAP ;
56
56
public static KeyBinding KB_MAP_ZOOMIN ;
57
57
public static KeyBinding KB_MAP_ZOOMOUT ;
58
- public static KeyBinding KB_MAP_DAY ;
59
- public static KeyBinding KB_MAP_NIGHT ;
58
+ public static KeyBinding KB_MAP_SWITCH_TYPE ;
60
59
public static KeyBinding KB_MINIMAP_PRESET ;
61
60
public static KeyBinding KB_WAYPOINT ;
62
61
private static String ICON_DIR = path .join (JOURNEYMAP_DIR , "icon" );
@@ -80,11 +79,10 @@ public static List<KeyBinding> initKeybindings()
80
79
KB_MAP = new KeyBinding ("key.journeymap.map_toggle" , Keyboard .KEY_J , KEYBINDING_CATEGORY );
81
80
KB_MAP_ZOOMIN = new KeyBinding ("key.journeymap.zoom_in" , Keyboard .KEY_EQUALS , KEYBINDING_CATEGORY );
82
81
KB_MAP_ZOOMOUT = new KeyBinding ("key.journeymap.zoom_out" , Keyboard .KEY_MINUS , KEYBINDING_CATEGORY );
83
- KB_MAP_DAY = new KeyBinding ("key.journeymap.minimap_type" , Keyboard .KEY_LBRACKET , KEYBINDING_CATEGORY );
84
- KB_MAP_NIGHT = new KeyBinding ("key.journeymap.minimap_type" , Keyboard .KEY_RBRACKET , KEYBINDING_CATEGORY );
82
+ KB_MAP_SWITCH_TYPE = new KeyBinding ("key.journeymap.minimap_type" , Keyboard .KEY_LBRACKET , KEYBINDING_CATEGORY );
85
83
KB_MINIMAP_PRESET = new KeyBinding ("key.journeymap.minimap_preset" , Keyboard .KEY_BACKSLASH , KEYBINDING_CATEGORY );
86
84
KB_WAYPOINT = new KeyBinding ("key.journeymap.create_waypoint" , Keyboard .KEY_B , KEYBINDING_CATEGORY );
87
- return Arrays .asList (KB_MAP , KB_MAP_ZOOMIN , KB_MAP_ZOOMOUT , KB_MAP_DAY , KB_MAP_NIGHT , KB_MINIMAP_PRESET , KB_WAYPOINT );
85
+ return Arrays .asList (KB_MAP , KB_MAP_ZOOMIN , KB_MAP_ZOOMOUT , KB_MAP_SWITCH_TYPE , KB_MINIMAP_PRESET , KB_WAYPOINT );
88
86
}
89
87
90
88
/**
0 commit comments