diff --git a/Dalamud/Game/ClientState/Actors/Targets.cs b/Dalamud/Game/ClientState/Actors/Targets.cs
index 49ec02095..98f36d4e3 100644
--- a/Dalamud/Game/ClientState/Actors/Targets.cs
+++ b/Dalamud/Game/ClientState/Actors/Targets.cs
@@ -28,26 +28,31 @@ namespace Dalamud.Game.ClientState.Actors
///
/// Gets the current target.
///
+ [CanBeNull]
public Actor CurrentTarget => this.GetActorByOffset(TargetOffsets.CurrentTarget);
///
/// Gets the mouseover target.
///
+ [CanBeNull]
public Actor MouseOverTarget => this.GetActorByOffset(TargetOffsets.MouseOverTarget);
///
/// Gets the focus target.
///
+ [CanBeNull]
public Actor FocusTarget => this.GetActorByOffset(TargetOffsets.FocusTarget);
///
/// Gets the previous target.
///
+ [CanBeNull]
public Actor PreviousTarget => this.GetActorByOffset(TargetOffsets.PreviousTarget);
///
/// Gets the soft target.
///
+ [CanBeNull]
public Actor SoftTarget => this.GetActorByOffset(TargetOffsets.SoftTarget);
///