diff options
Diffstat (limited to 'Scripts/osc_ctrl.py')
| -rw-r--r-- | Scripts/osc_ctrl.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Scripts/osc_ctrl.py b/Scripts/osc_ctrl.py index 750059f..3ff56ca 100644 --- a/Scripts/osc_ctrl.py +++ b/Scripts/osc_ctrl.py @@ -90,6 +90,8 @@ def updateRegion(client, region_idx, letter_encoded): # in FIFO order; e.g., the most recently spoken words are sent last. # Returns True if done paging, False otherwise. def pageMessage(osc_state: OscState, msg: str, estate: EmotesState) -> bool: + msg = estate.encode_emotes(msg) + msg_slice, slice_idx = osc_state.pager.getNextSlice(msg) if slice_idx == -1: return True |
