mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* Add the bionic syrinx implant * Make syrinx implant nonfunctional for non-harpies * Deconflict syrinx with voice mask * Don't allow non-harpies to inject a bionic syrinx * Use the new implant whitelist for syrinx instead * Add an action icon to the syrinx voicemask * Remove now-obsolete syrinx implant error messages * Move syrinx popups to player and to clientside
10 lines
272 B
C#
10 lines
272 B
C#
namespace Content.Server.VoiceMask;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class SyrinxVoiceMaskComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadWrite)] public bool Enabled = true;
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)] public string VoiceName = "Unknown";
|
|
}
|