Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Ryujinx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tartifless
Ryujinx
Commits
1c827619
Unverified
Commit
1c827619
authored
2 weeks ago
by
FluffyOMC
Committed by
GitHub
2 weeks ago
Browse files
Options
Downloads
Patches
Plain Diff
SSBU DRPC - Stage Editing (#707)
Adds it so the Rich Presence now notices when the player edits a custom stage!
parent
a3596ba8
No related branches found
Branches containing commit
Tags
Canary-1.2.416
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Ryujinx/Utilities/PlayReport/PlayReports.Formatters.cs
+5
-0
5 additions, 0 deletions
src/Ryujinx/Utilities/PlayReport/PlayReports.Formatters.cs
src/Ryujinx/Utilities/PlayReport/PlayReports.cs
+1
-1
1 addition, 1 deletion
src/Ryujinx/Utilities/PlayReport/PlayReports.cs
with
6 additions
and
1 deletion
src/Ryujinx/Utilities/PlayReport/PlayReports.Formatters.cs
+
5
−
0
View file @
1c827619
...
...
@@ -115,6 +115,11 @@ namespace Ryujinx.Ava.Utilities.PlayReport
return
$"Achievement Unlocked - ID:
{
anniversary
}
"
;
}
if
(
values
.
Matched
.
ContainsKey
(
"is_created"
))
{
return
"Edited a Custom Stage!"
;
}
if
(
values
.
Matched
.
ContainsKey
(
"adv_slot"
))
{
return
...
...
This diff is collapsed.
Click to expand it.
src/Ryujinx/Utilities/PlayReport/PlayReports.cs
+
1
−
1
View file @
1c827619
...
...
@@ -71,7 +71,7 @@ namespace Ryujinx.Ava.Utilities.PlayReport
[
// Metadata to figure out what PlayReport we have.
"match_mode"
,
"match_submode"
,
"anniversary"
,
"fighter"
,
"reason"
,
"challenge_count"
,
"adv_slot"
,
"adv_slot"
,
"is_created"
,
// List of Fighters
"player_1_fighter"
,
"player_2_fighter"
,
"player_3_fighter"
,
"player_4_fighter"
,
"player_5_fighter"
,
"player_6_fighter"
,
"player_7_fighter"
,
"player_8_fighter"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment