Skip to content

OnLiquidWeaponFiringStopped

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnLiquidWeaponFiringStopped( LiquidWeapon instance )
{
    Puts( "OnLiquidWeaponFiringStopped works!" );
}

Location

  • LiquidWeapon::StopFiring()
csharp
//---
	SetFlag(Flags.On, b: false);
	if (base.isServer)
	{
		SendNetworkUpdateImmediate();
	}
	Interface.CallHook("OnLiquidWeaponFiringStopped", this);
}

Released under the MIT License.