summaryrefslogtreecommitdiffstats
path: root/src/World.cpp
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@outlook.com>2021-02-06 19:37:50 +0100
committerTiger Wang <ziwei.tiger@outlook.com>2021-02-07 23:36:15 +0100
commit5a8e75e6aa7e1a25a7b463df258a2ed5cfbda841 (patch)
treea6a8a08368db1c504dcde7473679906094957f7e /src/World.cpp
parentFix #5118 (diff)
downloadcuberite-5a8e75e6aa7e1a25a7b463df258a2ed5cfbda841.tar
cuberite-5a8e75e6aa7e1a25a7b463df258a2ed5cfbda841.tar.gz
cuberite-5a8e75e6aa7e1a25a7b463df258a2ed5cfbda841.tar.bz2
cuberite-5a8e75e6aa7e1a25a7b463df258a2ed5cfbda841.tar.lz
cuberite-5a8e75e6aa7e1a25a7b463df258a2ed5cfbda841.tar.xz
cuberite-5a8e75e6aa7e1a25a7b463df258a2ed5cfbda841.tar.zst
cuberite-5a8e75e6aa7e1a25a7b463df258a2ed5cfbda841.zip
Diffstat (limited to 'src/World.cpp')
-rw-r--r--src/World.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/World.cpp b/src/World.cpp
index 361c26f04..1ade4d69c 100644
--- a/src/World.cpp
+++ b/src/World.cpp
@@ -1371,7 +1371,7 @@ void cWorld::DoExplosionAt(double a_ExplosionSize, double a_BlockX, double a_Blo
}
}
- Explodinator::Kaboom(*this, Vector3d(a_BlockX, a_BlockY, a_BlockZ), FloorC<unsigned>(a_ExplosionSize), a_CanCauseFire, Entity);
+ Explodinator::Kaboom(*this, Vector3d(a_BlockX, a_BlockY, a_BlockZ), FloorC(a_ExplosionSize), a_CanCauseFire, Entity);
cPluginManager::Get()->CallHookExploded(*this, a_ExplosionSize, a_CanCauseFire, a_BlockX, a_BlockY, a_BlockZ, a_Source, a_SourceData);
}
}