Skip to content

Commit f1825a8

Browse files
committed
Comment fixing
1 parent fc56678 commit f1825a8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Entities/HeldDevice.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -273,15 +273,15 @@ ClassInfoGetters;
273273
void SetSupported(bool supported) { m_Supported = m_Supportable && supported; }
274274

275275
/// <summary>
276-
/// Gets whether this HeldDevice has a second Arm available to provide support.
276+
/// Gets whether this HeldDevice's parent has a second Arm available to provide support (or this is on a Turret).
277277
/// </summary>
278-
/// <returns>Whether this HeldDevice has a second Arm available to provide support.</returns>
278+
/// <returns>Whether this HeldDevice's parent has a second Arm available to provide support (or this is on a Turret).</returns>
279279
bool GetSupportAvailable() const { return m_Supportable && m_SupportAvailable; }
280280

281281
/// <summary>
282-
/// Sets whether this HeldDevice has a second Arm available to provide support.
282+
/// Sets whether this HeldDevice's parent has a second Arm available to provide support (or this is on a Turret).
283283
/// </summary>
284-
/// <param name="supported">Whether this HeldDevice has a second Arm available to provide support.</param>
284+
/// <param name="supported">Whether this HeldDevice's parent has a second Arm available to provide support (or this is on a Turret).</param>
285285
void SetSupportAvailable(bool supportAvailable) { m_SupportAvailable = m_Supportable && supportAvailable; }
286286

287287

@@ -644,7 +644,7 @@ ClassInfoGetters;
644644
float m_MaxSharpLength;
645645
bool m_Supportable; //!< Whether or not this HeldDevice can be supported.
646646
bool m_Supported; //!< Whether or not this HeldDevice is currently being supported by another Arm.
647-
bool m_SupportAvailable; //!< Whether or not this HeldDevice has a supporting Arm available (or is on a Turret), even if it's the available Arm is not currently supporting the HeldDevice.
647+
bool m_SupportAvailable; //!< Whether or not this HeldDevice's parent has a second Arm available to provide support (or this is on a Turret).
648648
bool m_IsUnPickupable; //!< Whether or not this HeldDevice should be able to be picked up at all.
649649
//TODO: move this smelly thing elsewhere
650650
std::array<bool, Players::MaxPlayerCount> m_SeenByPlayer; //!< An array of players that can currently see the pickup HUD of this HeldDevice.

0 commit comments

Comments
 (0)