From 1a994c3750d3523bf09206f8f26807507f12cdf0 Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 10 Aug 2001 14:16:27 +0000 Subject: [PATCH] --- source/player/pmjelly.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/player/pmjelly.cpp b/source/player/pmjelly.cpp index 6070330ec..ed9090c89 100644 --- a/source/player/pmjelly.cpp +++ b/source/player/pmjelly.cpp @@ -376,7 +376,7 @@ void CPlayerModeJellyLauncher::launchProjectile() // Powered up, big shot int i; - fireHeading=1024+(1024*playerFacing)-512; + fireHeading=1024+(1024*playerFacing)-256; for(i=0;i<3;i++) { projectile=CPlayerProjectile::Create(); @@ -387,7 +387,7 @@ void CPlayerModeJellyLauncher::launchProjectile() (2*GameState::getOneSecondInFrames())); projectile->setRGB( 255 + ( 128 << 8 ) + ( 255 << 16 ) ); - fireHeading+=512; + fireHeading+=256; m_player->useOneJelly(); } }