summaryrefslogtreecommitdiff
path: root/src/client/particles.h
diff options
context:
space:
mode:
authorParamat <paramat@users.noreply.github.com>2019-02-26 04:26:25 +0000
committerGitHub <noreply@github.com>2019-02-26 04:26:25 +0000
commit01cd63bd3bca0192dab2834faf414b022706a77e (patch)
tree0e735b1555ceee05360600b380d30429239e9609 /src/client/particles.h
parentd80186d8571261ad7d09d3498a9e8a6da63801a2 (diff)
downloadminetest-01cd63bd3bca0192dab2834faf414b022706a77e.tar.gz
minetest-01cd63bd3bca0192dab2834faf414b022706a77e.tar.bz2
minetest-01cd63bd3bca0192dab2834faf414b022706a77e.zip
Revert CSM particles commit to fix particle spawner bug for 5.0.0 (#8288)
Reverts 5dab7426451842793b183fbd961ad2ae83c8acbd "[CSM] Add functions to create particles and particlespawners."
Diffstat (limited to 'src/client/particles.h')
-rw-r--r--src/client/particles.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/client/particles.h b/src/client/particles.h
index 3392e7e95..d1854ecbf 100644
--- a/src/client/particles.h
+++ b/src/client/particles.h
@@ -196,14 +196,6 @@ public:
void addNodeParticle(IGameDef *gamedef, LocalPlayer *player, v3s16 pos,
const MapNode &n, const ContentFeatures &f);
- u32 getSpawnerId() const
- {
- for (u32 id = 0;; ++id) { // look for unused particlespawner id
- if (m_particle_spawners.find(id) == m_particle_spawners.end())
- return id;
- }
- }
-
protected:
void addParticle(Particle* toadd);