Files
7d2dXG/Mods/0A-KFCommonUtilityLib/Scripts/MinEventActions/MinEventActionBroadcastPlaySoundLocal.cs
Nathaniel Cosford 062dfab2cd Patched
2025-05-30 01:04:40 +09:30

9 lines
302 B
C#

public class MinEventActionBroadcastPlaySoundLocal : MinEventActionPlaySound
{
public override bool CanExecute(MinEventTypes _eventType, MinEventParams _params)
{
return targetType == TargetTypes.self && !_params.Self.isEntityRemote && base.CanExecute(_eventType, _params);
}
}