mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Merge branch 'master' into fix-relative-link-resolution
This commit is contained in:
@ -169,6 +169,9 @@ namespace osu.Game.Online.Chat
|
||||
case "u":
|
||||
case "users":
|
||||
return new LinkDetails(LinkAction.OpenUserProfile, mainArg);
|
||||
|
||||
case "wiki":
|
||||
return new LinkDetails(LinkAction.OpenWiki, string.Join('/', args.Skip(3)));
|
||||
}
|
||||
}
|
||||
|
||||
@ -313,7 +316,8 @@ namespace osu.Game.Online.Chat
|
||||
JoinMultiplayerMatch,
|
||||
Spectate,
|
||||
OpenUserProfile,
|
||||
Custom
|
||||
OpenWiki,
|
||||
Custom,
|
||||
}
|
||||
|
||||
public class Link : IComparable<Link>
|
||||
|
Reference in New Issue
Block a user