diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-09-01 20:12:56 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-09-01 20:12:56 +0200 |
commit | 7c4cb9a3852e33d8bcc5f8283485e833c6eab93e (patch) | |
tree | a9f183b2ec527016f49da587e54641156db2a007 /src/Entities/Pawn.cpp | |
parent | Fixed Bindings regeneration under MSVC. (diff) | |
download | cuberite-7c4cb9a3852e33d8bcc5f8283485e833c6eab93e.tar cuberite-7c4cb9a3852e33d8bcc5f8283485e833c6eab93e.tar.gz cuberite-7c4cb9a3852e33d8bcc5f8283485e833c6eab93e.tar.bz2 cuberite-7c4cb9a3852e33d8bcc5f8283485e833c6eab93e.tar.lz cuberite-7c4cb9a3852e33d8bcc5f8283485e833c6eab93e.tar.xz cuberite-7c4cb9a3852e33d8bcc5f8283485e833c6eab93e.tar.zst cuberite-7c4cb9a3852e33d8bcc5f8283485e833c6eab93e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Entities/Pawn.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Entities/Pawn.cpp b/src/Entities/Pawn.cpp index fe6c24a7a..fc8ca3d47 100644 --- a/src/Entities/Pawn.cpp +++ b/src/Entities/Pawn.cpp @@ -9,9 +9,9 @@ -cPawn::cPawn(eEntityType a_EntityType, double a_Width, double a_Height): - super(a_EntityType, 0, 0, 0, a_Width, a_Height), - m_EntityEffects(tEffectMap()) +cPawn::cPawn(eEntityType a_EntityType, double a_Width, double a_Height) : + super(a_EntityType, 0, 0, 0, a_Width, a_Height) + , m_EntityEffects(tEffectMap()) { } @@ -111,3 +111,6 @@ void cPawn::ClearEntityEffects() RemoveEntityEffect(EffectType); } } + + + |