diff options
Diffstat (limited to 'source/Entities/ProjectileEntity.cpp')
-rw-r--r-- | source/Entities/ProjectileEntity.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/Entities/ProjectileEntity.cpp b/source/Entities/ProjectileEntity.cpp index 93508e2f7..c6c5ecc71 100644 --- a/source/Entities/ProjectileEntity.cpp +++ b/source/Entities/ProjectileEntity.cpp @@ -5,6 +5,7 @@ #include "Globals.h" #include "ProjectileEntity.h" +#include "../ClientHandle.h" @@ -71,7 +72,7 @@ cArrowEntity::cArrowEntity(cEntity * a_Creator, double a_X, double a_Y, double a void cArrowEntity::SpawnOn(cClientHandle & a_Client) { - // TODO + a_Client.SendSpawnObject(*this, pkArrow, 0, 0, 0); } |