From: MirceaKitsune Date: Wed, 13 Jul 2011 16:07:18 +0000 (+0300) Subject: Rename a particle effect X-Git-Url: https://de.git.xonotic.org/?p=voretournament%2Fvoretournament.git;a=commitdiff_plain;h=ceb24eb734d894254c4e32a51240aa66f16e8c7f Rename a particle effect --- diff --git a/data/effectinfo.txt b/data/effectinfo.txt index b1859829..1cf39dbf 100644 --- a/data/effectinfo.txt +++ b/data/effectinfo.txt @@ -4842,7 +4842,7 @@ airfriction 1 // regurgitate effect // used in: vore.qc: pointparticles(particleeffectnum("regurgitate"), e.predator.origin, '0 0 0', 1) -effect regurgitate +effect vore_regurgitate count 30 type blood tex 24 32 @@ -4856,8 +4856,8 @@ velocityjitter 192 192 32 velocitymultiplier 5 staincolor 0x408000 0x80FF00 staintex 16 24 -//blood mist -effect regurgitate +//green mist +effect vore_regurgitate countabsolute 10 type alphastatic tex 0 8 diff --git a/data/qcsrc/server/vore.qc b/data/qcsrc/server/vore.qc index 54887741..e47b0655 100644 --- a/data/qcsrc/server/vore.qc +++ b/data/qcsrc/server/vore.qc @@ -381,7 +381,7 @@ void Vore_Regurgitate(entity e) PlayerSound(e.predator, playersound_regurgitate, CHAN_VOICE, VOICETYPE_PLAYERSOUND); setanim(e.predator, e.predator.anim_pain1, FALSE, TRUE, TRUE); // looks good for swallowing / regurgitating - pointparticles(particleeffectnum("regurgitate"), e.predator.origin, '0 0 0', 1); + pointparticles(particleeffectnum("vore_regurgitate"), e.predator.origin, '0 0 0', 1); e.predator.punchangle_x += cvar("g_balance_vore_regurgitate_punchangle"); e.predator.stomach_load -= 1; e.predator.regurgitate_prepare = 0;