Try to fix Windows build

This commit is contained in:
def 2020-08-09 15:19:13 +02:00 committed by Zwelf
parent 61ffd88f34
commit 20e8bfd12a
2 changed files with 2 additions and 3 deletions

View file

@ -13,7 +13,6 @@
class CAntibot;
class CGameTeams;
class CSaveTee;
struct CAntibotCharacterData;
enum

View file

@ -7,7 +7,7 @@
#include <game/server/gamemodes/DDRace.h>
#include "plasma.h"
const float ACCEL = 1.1f;
const float PLASMA_ACCEL = 1.1f;
CPlasma::CPlasma(CGameWorld *pGameWorld, vec2 Pos, vec2 Dir, bool Freeze,
bool Explosive, int ResponsibleTeam) :
@ -44,7 +44,7 @@ bool CPlasma::HitCharacter()
void CPlasma::Move()
{
m_Pos += m_Core;
m_Core *= ACCEL;
m_Core *= PLASMA_ACCEL;
}
void CPlasma::Reset()