Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
/osuPublic

Commitf8331e0

Browse files
committed
Apply one more missed rename
1 parent4d706b1 commitf8331e0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

‎osu.Game/Online/Multiplayer/MultiplayerClient.cs‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public abstract partial class MultiplayerClient : Component, IMultiplayerClient,
131131
publiceventAction<int,long>?MatchmakingItemDeselected;
132132
publiceventAction<MatchRoomState>?MatchRoomStateChanged;
133133

134-
publiceventAction<int>?UserVotedToSkip;
134+
publiceventAction<int>?UserVotedToSkipIntro;
135135
publiceventAction?VoteToSkipIntroPassed;
136136

137137
/// <summary>
@@ -939,7 +939,7 @@ Task IMultiplayerClient.UserVotedToSkipIntro(int userId)
939939

940940
user.VotedToSkipIntro=true;
941941

942-
UserVotedToSkip?.Invoke(userId);
942+
UserVotedToSkipIntro?.Invoke(userId);
943943
});
944944

945945
returnTask.CompletedTask;

‎osu.Game/Screens/OnlinePlay/Multiplayer/MultiplayerSkipOverlay.cs‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ protected override void LoadComplete()
7878

7979
client.UserLeft+=onUserLeft;
8080
client.UserStateChanged+=onUserStateChanged;
81-
client.UserVotedToSkip+=onUserVotedToSkip;
81+
client.UserVotedToSkipIntro+=onUserVotedToSkipIntro;
8282

8383
updateText();
8484
}
@@ -93,7 +93,7 @@ private void onUserStateChanged(MultiplayerRoomUser user, MultiplayerUserState s
9393
Schedule(updateText);
9494
}
9595

96-
privatevoidonUserVotedToSkip(intuserId)=>Schedule(()=>
96+
privatevoidonUserVotedToSkipIntro(intuserId)=>Schedule(()=>
9797
{
9898
updateText();
9999

@@ -126,7 +126,7 @@ protected override void Dispose(bool isDisposing)
126126
{
127127
client.UserLeft-=onUserLeft;
128128
client.UserStateChanged-=onUserStateChanged;
129-
client.UserVotedToSkip-=onUserVotedToSkip;
129+
client.UserVotedToSkipIntro-=onUserVotedToSkipIntro;
130130
}
131131
}
132132
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp