]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/effects/effect.qh
Remove remove()
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / effects / effect.qh
index 0ae9b489360d84b58df2ecddbef48f9af100ca22..e58d42ca7b4ba55f9ed82af6b623bd1d21a6b883 100644 (file)
@@ -27,8 +27,7 @@
 
 entity Create_Effect_Entity(string eff_name, bool eff_trail)
 {
-       entity this = new(effect_entity);
-       make_pure(this);
+       entity this = new_pure(effect_entity);
        this.eent_eff_name = eff_name;
        this.eent_eff_trail = eff_trail;
        return this;