@@ -40,17 +40,17 @@ def handleSelectionEvent(self, event, replay):
40
40
if error :
41
41
event .player .selection_errors += 1
42
42
43
- def handleGetFromHotkeyEvent (self , event , replay ):
43
+ def handleGetControlGroupEvent (self , event , replay ):
44
44
selection = event .player .selection [event .control_group ]
45
45
new_selection , error = self ._deselect (selection , event .mask_type , event .mask_data )
46
46
event .player .selection [10 ] = new_selection
47
47
if error :
48
48
event .player .selection_errors += 1
49
49
50
- def handleSetToHotkeyEvent (self , event , replay ):
50
+ def handleSetControlGroupEvent (self , event , replay ):
51
51
event .player .selection [event .control_group ] = event .player .selection [10 ]
52
52
53
- def handleAddToHotkeyEvent (self , event , replay ):
53
+ def handleAddToControlGroupEvent (self , event , replay ):
54
54
selection = event .player .selection [event .control_group ]
55
55
new_selection , error = self ._deselect (selection , event .mask_type , event .mask_data )
56
56
new_selection = self ._select (new_selection , event .player .selection [10 ])
0 commit comments