Skip to content

Commit 87ece3b

Browse files
committed
docs: Update comments
1 parent 3878563 commit 87ece3b

8 files changed

+8
-8
lines changed

GeneralsMD/Code/GameEngine/Source/GameLogic/Object/Collide/CrateCollide/SabotageCommandCenterCrateCollide.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Bool SabotageCommandCenterCrateCollide::isValidToExecute( const Object *other )
9999

100100
if (other->getStatusBits().testForAny(MAKE_OBJECT_STATUS_MASK2(OBJECT_STATUS_UNDER_CONSTRUCTION, OBJECT_STATUS_SOLD)))
101101
{
102-
// Can't enter something being sold or under construction
102+
// TheSuperHackers @bugfix Stubbjax 03/08/2025 Can't enter something being sold or under construction.
103103
return FALSE;
104104
}
105105

GeneralsMD/Code/GameEngine/Source/GameLogic/Object/Collide/CrateCollide/SabotageFakeBuilding.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Bool SabotageFakeBuildingCrateCollide::isValidToExecute( const Object *other ) c
9494

9595
if (other->getStatusBits().testForAny(MAKE_OBJECT_STATUS_MASK2(OBJECT_STATUS_UNDER_CONSTRUCTION, OBJECT_STATUS_SOLD)))
9696
{
97-
// Can't enter something being sold or under construction
97+
// TheSuperHackers @bugfix Stubbjax 03/08/2025 Can't enter something being sold or under construction.
9898
return FALSE;
9999
}
100100

GeneralsMD/Code/GameEngine/Source/GameLogic/Object/Collide/CrateCollide/SabotageInternetCenterCrateCollide.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Bool SabotageInternetCenterCrateCollide::isValidToExecute( const Object *other )
100100

101101
if (other->getStatusBits().testForAny(MAKE_OBJECT_STATUS_MASK2(OBJECT_STATUS_UNDER_CONSTRUCTION, OBJECT_STATUS_SOLD)))
102102
{
103-
// Can't enter something being sold or under construction
103+
// TheSuperHackers @bugfix Stubbjax 03/08/2025 Can't enter something being sold or under construction.
104104
return FALSE;
105105
}
106106

GeneralsMD/Code/GameEngine/Source/GameLogic/Object/Collide/CrateCollide/SabotageMilitaryFactoryCrateCollide.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Bool SabotageMilitaryFactoryCrateCollide::isValidToExecute( const Object *other
104104

105105
if (other->getStatusBits().testForAny(MAKE_OBJECT_STATUS_MASK2(OBJECT_STATUS_UNDER_CONSTRUCTION, OBJECT_STATUS_SOLD)))
106106
{
107-
// Can't enter something being sold or under construction
107+
// TheSuperHackers @bugfix Stubbjax 03/08/2025 Can't enter something being sold or under construction.
108108
return FALSE;
109109
}
110110

GeneralsMD/Code/GameEngine/Source/GameLogic/Object/Collide/CrateCollide/SabotagePowerPlantCrateCollide.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Bool SabotagePowerPlantCrateCollide::isValidToExecute( const Object *other ) con
9494

9595
if (other->getStatusBits().testForAny(MAKE_OBJECT_STATUS_MASK2(OBJECT_STATUS_UNDER_CONSTRUCTION, OBJECT_STATUS_SOLD)))
9696
{
97-
// Can't enter something being sold or under construction
97+
// TheSuperHackers @bugfix Stubbjax 03/08/2025 Can't enter something being sold or under construction.
9898
return FALSE;
9999
}
100100

GeneralsMD/Code/GameEngine/Source/GameLogic/Object/Collide/CrateCollide/SabotageSuperweaponCrateCollide.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Bool SabotageSuperweaponCrateCollide::isValidToExecute( const Object *other ) co
9999

100100
if (other->getStatusBits().testForAny(MAKE_OBJECT_STATUS_MASK2(OBJECT_STATUS_UNDER_CONSTRUCTION, OBJECT_STATUS_SOLD)))
101101
{
102-
// Can't enter something being sold or under construction
102+
// TheSuperHackers @bugfix Stubbjax 03/08/2025 Can't enter something being sold or under construction.
103103
return FALSE;
104104
}
105105

GeneralsMD/Code/GameEngine/Source/GameLogic/Object/Collide/CrateCollide/SabotageSupplyCenterCrateCollide.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Bool SabotageSupplyCenterCrateCollide::isValidToExecute( const Object *other ) c
9898

9999
if (other->getStatusBits().testForAny(MAKE_OBJECT_STATUS_MASK2(OBJECT_STATUS_UNDER_CONSTRUCTION, OBJECT_STATUS_SOLD)))
100100
{
101-
// Can't enter something being sold or under construction
101+
// TheSuperHackers @bugfix Stubbjax 03/08/2025 Can't enter something being sold or under construction.
102102
return FALSE;
103103
}
104104

GeneralsMD/Code/GameEngine/Source/GameLogic/Object/Collide/CrateCollide/SabotageSupplyDropzoneCrateCollide.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Bool SabotageSupplyDropzoneCrateCollide::isValidToExecute( const Object *other )
9898

9999
if (other->getStatusBits().testForAny(MAKE_OBJECT_STATUS_MASK2(OBJECT_STATUS_UNDER_CONSTRUCTION, OBJECT_STATUS_SOLD)))
100100
{
101-
// Can't enter something being sold or under construction
101+
// TheSuperHackers @bugfix Stubbjax 03/08/2025 Can't enter something being sold or under construction.
102102
return FALSE;
103103
}
104104

0 commit comments

Comments
 (0)