diff options
Diffstat (limited to 'Minecraft.Client/DripParticle.cpp')
| -rw-r--r-- | Minecraft.Client/DripParticle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.Client/DripParticle.cpp b/Minecraft.Client/DripParticle.cpp index d7202b07..9463976e 100644 --- a/Minecraft.Client/DripParticle.cpp +++ b/Minecraft.Client/DripParticle.cpp @@ -30,7 +30,7 @@ DripParticle::DripParticle(Level *level, double x, double y, double z, Material this->material = material; stuckTime = 40; - lifetime = static_cast<int>(64 / (Math::random() * 0.8 + 0.2)); + lifetime = (int) (64 / (Math::random() * 0.8 + 0.2)); xd = yd = zd = 0; } |
