mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-05 21:40:31 +00:00
Merge pull request #1681 from Azaezel/alpha41/coverCorrection
Alpha41/cover correction
This commit is contained in:
commit
88da6f60f6
1 changed files with 2 additions and 2 deletions
|
|
@ -74,7 +74,7 @@ public:
|
|||
{
|
||||
if (mCover && mCover->mPosSet && mCover->getPosition() == loc)
|
||||
{
|
||||
mCover->mRadius == rad;
|
||||
mCover->mRadius = rad;
|
||||
return;
|
||||
}
|
||||
delete(mCover); mCover = new AICover(this, loc, rad);
|
||||
|
|
@ -83,7 +83,7 @@ public:
|
|||
{
|
||||
if (mCover && mCover->mObj == objIn)
|
||||
{
|
||||
mCover->mRadius == rad;
|
||||
mCover->mRadius = rad;
|
||||
return;
|
||||
}
|
||||
delete(mCover); mCover = new AICover(this, objIn, rad);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue