Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wizden Request #150

Merged
merged 1 commit into from
Aug 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions Content.Client/FurryServers/FurryServersWindow.xaml

This file was deleted.

59 changes: 0 additions & 59 deletions Content.Client/FurryServers/FurryServersWindow.xaml.cs

This file was deleted.

4 changes: 0 additions & 4 deletions Content.Client/Info/LinkBanner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,6 @@ public LinkBanner()
};
buttons.AddChild(guidebookButton);

var furryServersButton = new Button() { Text = "More Furry Servers" };
furryServersButton.OnPressed += args => UserInterfaceManager.GetUIController<FurryServersUIController>().ToggleWindow();
buttons.AddChild(furryServersButton);

var changelogButton = new ChangelogButton();
changelogButton.OnPressed += args => UserInterfaceManager.GetUIController<ChangelogUIController>().ToggleWindow();
buttons.AddChild(changelogButton);
Expand Down
1 change: 0 additions & 1 deletion Content.Client/Options/UI/EscapeMenu.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<Button Access="Public" Name="RulesButton" Text="{Loc 'ui-escape-rules'}" />
<Button Access="Public" Name="GuidebookButton" Text="{Loc 'ui-escape-guidebook'}" />
<Button Access="Public" Name="WikiButton" Text="{Loc 'ui-escape-wiki'}" />
<Button Access="Public" Name="FurryServersButton" Text="More Furry Servers" />
<Button Access="Public" Name="DisconnectButton" Text="{Loc 'ui-escape-disconnect'}" />
<Button Access="Public" Name="QuitButton" Text="{Loc 'ui-escape-quit'}" />
</BoxContainer>
Expand Down
5 changes: 0 additions & 5 deletions Content.Client/Stylesheets/StyleNano.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1342,11 +1342,6 @@ public StyleNano(IResourceCache resCache) : base(resCache)
.Prop(Label.StylePropertyFont, notoSans10),
// ---

// Furry Servers - Very Large Label for section headers
Element<Label>().Class("FurryServersSectionHeader")
.Prop(Label.StylePropertyFont, notoSansBold20),
// ---

// Different Background shapes ---
Element<PanelContainer>().Class(ClassAngleRect)
.Prop(PanelContainer.StylePropertyPanel, BaseAngleRect)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public sealed class EscapeUIController : UIController, IOnStateEntered<GameplayS
[Dependency] private readonly InfoUIController _info = default!;
[Dependency] private readonly OptionsUIController _options = default!;
[Dependency] private readonly GuidebookUIController _guidebook = default!;
//[Dependency] private readonly FurryServersUIController _furryServers = default!;

private Options.UI.EscapeMenu? _escapeWindow;

Expand Down Expand Up @@ -99,12 +98,6 @@ public void OnStateEntered(GameplayState state)
_uri.OpenUri(_cfg.GetCVar(CCVars.InfoLinksWiki));
};

//_escapeWindow.FurryServersButton.OnPressed += _ =>
//{
// CloseEscapeWindow();
// _furryServers.ToggleWindow();
//};

_escapeWindow.GuidebookButton.OnPressed += _ =>
{
_guidebook.ToggleGuidebook();
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
<BoxContainer Orientation="Vertical">
<RichTextLabel Margin="8 0 0 0" Name="DenialReason" />
<Button Margin="8 10 0 0" Name="WhitelistApplyButton" Text="Apply for whitelist" />
<PanelContainer Margin="8 10 0 0" StyleClasses="LowDivider" />
<Button Margin="8 20 0 0" Name="FurryServersButton" Text="Or check out other Furry SS14 Servers" />
</BoxContainer>
</ScrollContainer>
</ui:WhitelistDenialWindow>
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
using Robust.Shared.Console;
using Robust.Client.ResourceManagement;
using Robust.Shared.Utility;
using Content.Client.UserInterface.Systems.EscapeMenu;

namespace Content.Client.UserInterface.Systems.WhitelistWindow.Controls
{
Expand All @@ -31,11 +30,6 @@ public WhitelistDenialWindow()
{
_uri.OpenUri("https://discord.gg/ZZYNpq5KBJ"); // Floof discord link
};

FurryServersButton.OnPressed += _ =>
{
UserInterfaceManager.GetUIController<FurryServersUIController>().ToggleWindow();
};
}


Expand Down
Loading