This commit is contained in:
Daveo 2001-06-11 23:37:59 +00:00
parent 035137ce93
commit 660a63b903
5 changed files with 76 additions and 7 deletions

View file

@ -22,7 +22,7 @@
#include "fx\fxattachAnim.h"
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
const int DodgyYOffsetCosThePlatformAintInTheRightPosition_SortItOutCharles=32;
const int DodgyFXOffset=16;
void CNpcGeyserPlatform::postInit()
{
CNpcPlatform::postInit();
@ -32,11 +32,10 @@ void CNpcGeyserPlatform::postInit()
m_state = GEYSER_READY;
// Add fountain stuff
DVECTOR Pos=getPos();
Pos.vy+=DodgyYOffsetCosThePlatformAintInTheRightPosition_SortItOutCharles;
Pos.vy+=DodgyFXOffset;
CThing *FX=CFX::Create(CFX::FX_TYPE_FOUNTAIN_OIL,Pos);
addChild(FX);
CHARLES_DBGMSG("CNpcGeyserPlatform::postInit() - Reminder::Sort your platform positions out.\n");
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////