mirror of
https://github.com/edgegamers/Jailbreak.git
synced 2025-12-05 20:40:29 -08:00
Use dark blue instead
This commit is contained in:
@@ -11,7 +11,7 @@ namespace Jailbreak.English.Generic;
|
||||
public class GenericCmdLocale : IGenericCmdLocale,
|
||||
ILanguage<Formatting.Languages.English> {
|
||||
private static readonly FormatObject PREFIX =
|
||||
new HiddenFormatObject($" {ChatColors.LightBlue}Server>") {
|
||||
new HiddenFormatObject($" {ChatColors.DarkBlue}Server>") {
|
||||
// Hide in panorama and center text
|
||||
Plain = false, Panorama = false, Chat = true
|
||||
};
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Jailbreak.English.LastGuard;
|
||||
|
||||
public class LGLocale : ILGLocale, ILanguage<Formatting.Languages.English> {
|
||||
private static readonly FormatObject PREFIX =
|
||||
new HiddenFormatObject($" {ChatColors.LightBlue}Guard>") {
|
||||
new HiddenFormatObject($" {ChatColors.DarkBlue}Guard>") {
|
||||
// Hide in panorama and center text
|
||||
Plain = false, Panorama = false, Chat = true
|
||||
};
|
||||
|
||||
@@ -14,7 +14,7 @@ namespace Jailbreak.English.LastRequest;
|
||||
public class LastRequestLocale : ILRLocale,
|
||||
ILanguage<Formatting.Languages.English> {
|
||||
public static readonly FormatObject PREFIX =
|
||||
new HiddenFormatObject($" {ChatColors.LightBlue}LR>") {
|
||||
new HiddenFormatObject($" {ChatColors.DarkBlue}LR>") {
|
||||
// Hide in panorama and center text
|
||||
Plain = false, Panorama = false, Chat = true
|
||||
};
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Jailbreak.English.Mute;
|
||||
public class WardenPeaceLocale : IWardenPeaceLocale,
|
||||
ILanguage<Formatting.Languages.English> {
|
||||
private static readonly FormatObject PREFIX =
|
||||
new HiddenFormatObject($" {ChatColors.LightBlue}Voice>") {
|
||||
new HiddenFormatObject($" {ChatColors.DarkBlue}Voice>") {
|
||||
Plain = false, Panorama = false, Chat = true
|
||||
};
|
||||
|
||||
|
||||
@@ -1,14 +1,19 @@
|
||||
using CounterStrikeSharp.API.Core;
|
||||
using CounterStrikeSharp.API.Modules.Utils;
|
||||
using Jailbreak.Formatting.Base;
|
||||
using Jailbreak.Formatting.Core;
|
||||
using Jailbreak.Formatting.Logistics;
|
||||
using Jailbreak.Formatting.Objects;
|
||||
using Jailbreak.Formatting.Views.RTD;
|
||||
using Jailbreak.Public.Mod.RTD;
|
||||
|
||||
namespace Jailbreak.English.RTD;
|
||||
|
||||
public class RTDLocale : IRTDLocale, ILanguage<Formatting.Languages.English> {
|
||||
public static readonly string PREFIX = $" {ChatColors.LightBlue}RTD>";
|
||||
public static readonly FormatObject PREFIX =
|
||||
new HiddenFormatObject($" {ChatColors.DarkBlue}RTD>") {
|
||||
Plain = false, Panorama = false, Chat = true
|
||||
};
|
||||
|
||||
public IView RewardSelected(IRTDReward reward) {
|
||||
var view = new SimpleView {
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Jailbreak.English.Rebel;
|
||||
public class RebelLocale : IRebelLocale,
|
||||
ILanguage<Formatting.Languages.English> {
|
||||
public static readonly FormatObject PREFIX =
|
||||
new HiddenFormatObject($" {ChatColors.LightBlue}Game>") {
|
||||
new HiddenFormatObject($" {ChatColors.DarkBlue}Game>") {
|
||||
// Hide in panorama and center text
|
||||
Plain = false, Panorama = false, Chat = true
|
||||
};
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace Jailbreak.English.SpecialDay;
|
||||
|
||||
public class SDLocale : ISDLocale, ILanguage<Formatting.Languages.English> {
|
||||
public static readonly FormatObject PREFIX =
|
||||
new HiddenFormatObject($" {ChatColors.LightBlue}Game>") {
|
||||
new HiddenFormatObject($" {ChatColors.DarkBlue}Game>") {
|
||||
// Hide in panorama and center text
|
||||
Plain = false, Panorama = false, Chat = true
|
||||
};
|
||||
|
||||
@@ -11,7 +11,7 @@ namespace Jailbreak.English.Warden;
|
||||
public class WardenLocale : IWardenLocale,
|
||||
ILanguage<Formatting.Languages.English> {
|
||||
public static readonly FormatObject PREFIX =
|
||||
new HiddenFormatObject($" {ChatColors.LightBlue}Guard>") {
|
||||
new HiddenFormatObject($" {ChatColors.DarkBlue}Guard>") {
|
||||
// Hide in panorama and center text
|
||||
Plain = false, Panorama = false, Chat = true
|
||||
};
|
||||
@@ -28,7 +28,7 @@ public class WardenLocale : IWardenLocale,
|
||||
public IView NoWardens
|
||||
=> new SimpleView {
|
||||
PREFIX,
|
||||
$"No wardens in queue. Next player to {ChatColors.BlueGrey}!warden{ChatColors.White} will become warden."
|
||||
$"No wardens in queue. Next player to {ChatColors.BlueGrey}!warden{ChatColors.Grey} will become warden."
|
||||
};
|
||||
|
||||
public IView WardenLeft
|
||||
|
||||
Reference in New Issue
Block a user