Всякое (#96)

* - tweak: Pull eaxe from uplink.

* - tweak: Nerf spear.

* - tweak: Give sec hardsuits heat resist.

* - tweak: Revert mistakes.

* - tweak: No discounts for nukies.

* - tweak: Nerf hardsuit prices.

* - fix: Fix cult chat whisper.
This commit is contained in:
Aviu00
2024-02-19 13:52:35 +09:00
committed by GitHub
parent 4cdc419429
commit d306f59452
13 changed files with 52 additions and 40 deletions

View File

@@ -21,7 +21,6 @@ using Content.Shared.Input;
using Content.Shared.Radio;
using Content.Shared._White;
using Content.Shared._White.Utils;
using Content.Shared._White.Cult;
using Content.Shared._White.Cult.Systems;
using Robust.Client.Graphics;
using Robust.Client.Input;
@@ -54,7 +53,6 @@ public sealed class ChatUIController : UIController
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly IReplayRecordingManager _replayRecording = default!;
[Dependency] private readonly IConfigurationManager _cfg = default!;
[Dependency] private readonly CultistWordGeneratorManager _wordGenerator = default!;
[Dependency] private readonly IEntityManager _entities = default!;
[UISystemDependency] private readonly ExamineSystem? _examine = default;
@@ -850,13 +848,6 @@ public sealed class ChatUIController : UIController
AddSpeechBubble(msg, SpeechBubble.SpeechType.Whisper);
break;
// WD EDIT
case ChatChannel.Cult:
msg.Message = _wordGenerator.GenerateText(msg.Message);
AddSpeechBubble(msg, SpeechBubble.SpeechType.Whisper);
break;
// WD EDIT END
case ChatChannel.Dead:
if (_ghost is not {IsGhost: true})
break;