mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
# Description Moved the whole CPR code to the server. There was no need for it to be on shared. Now CPR automatically repeats itself until the person is alive. CPR can now be performed without getting you mask off. You just need to lower it down like when trying to eat/drink. Fixed popups repeating itself x100 times. Removed cvars and moved everything to CPRTraining component. Why would anyone place them in cvars anyway?.. --- # Changelog 🆑 - add: CPR now automatically repeats itself. - add: CPR no longer requires you to take the mask off. You can now simply lower it instead. - fix: Fixed CPR repeating popups x100 times. Signed-off-by: Remuchi <RemuchiOfficial@gmail.com> (cherry picked from commit 075a4433e1a0180d57d4166bb7435ca985883987)
8 lines
199 B
C#
8 lines
199 B
C#
using Content.Shared.DoAfter;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Medical;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed partial class CPRDoAfterEvent : SimpleDoAfterEvent;
|