Skip to content

Commit 2210cab

Browse files
committed
fix: fix the display issue
1 parent 68ae02c commit 2210cab

File tree

3 files changed

+2
-11
lines changed

3 files changed

+2
-11
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,6 @@ jobs:
1212

1313
- name: Setup XMake
1414
uses: xmake-io/github-action-setup-xmake@v1
15-
16-
- name: Cache
17-
uses: actions/cache@v4
18-
with:
19-
path: |
20-
~/AppData/Local/.xmake
21-
key: xmake-${{ hashFiles('xmake.lua') }}
22-
restore-keys: |
23-
xmake-
2415

2516
- name: Update Repo
2617
run: xmake repo -u

src/gmsidebar/GMSidebar.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ struct GMSidebar::Impl {
7777

7878
mListener = ll::event::EventBus::getInstance().emplaceListener<ll::event::PlayerDisconnectEvent>(
7979
[&](ll::event::PlayerDisconnectEvent& event) -> void {
80-
mPlayerSidebarEnabled.erase(event.self().getUuid());
80+
mPlayerCache.erase(event.self().getUuid());
8181
}
8282
);
8383
}

tooth.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"format_version": 2,
33
"tooth": "github.com/GroupMountain/GMSidebar",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"info": {
66
"name": "GMSidebar",
77
"description": "High Performance Sidebar Mod",

0 commit comments

Comments
 (0)