Remove dissolvetype effect

This commit is contained in:
Jackz 2022-11-11 11:02:47 -06:00
parent 634089a857
commit 2a9a34eb08
No known key found for this signature in database
GPG key ID: E0BBD94CF657F603
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View file

@ -392,7 +392,7 @@ stock int CreateLaser(const float origin[3], const char[] targetName, float colo
DispatchKeyValue(laser, "targetname", "sm_laser"); DispatchKeyValue(laser, "targetname", "sm_laser");
DispatchKeyValue(laser, "LaserTarget", targetName); DispatchKeyValue(laser, "LaserTarget", targetName);
DispatchKeyValue(laser, "spawnflags", "1"); DispatchKeyValue(laser, "spawnflags", "1");
DispatchKeyValue(laser, "dissolvetype", "2"); // DispatchKeyValue(laser, "dissolvetype", "2");
DispatchKeyValue(laser, "NoiseAmplitude", "1"); DispatchKeyValue(laser, "NoiseAmplitude", "1");
DispatchKeyValueFloat(laser, "damage", damage); DispatchKeyValueFloat(laser, "damage", damage);
DispatchKeyValueFloat(laser, "life", duration); DispatchKeyValueFloat(laser, "life", duration);
@ -420,7 +420,7 @@ stock int CreateBeam(const char[] beginTarget, const float center[3], const char
if(endTarget[0] != '\0') if(endTarget[0] != '\0')
DispatchKeyValue(laser, "LightningEnd", endTarget); DispatchKeyValue(laser, "LightningEnd", endTarget);
DispatchKeyValue(laser, "spawnflags", "1"); DispatchKeyValue(laser, "spawnflags", "1");
DispatchKeyValue(laser, "dissolvetype", "2"); // DispatchKeyValue(laser, "dissolvetype", "2");
DispatchKeyValue(laser, "NoiseAmplitude", "1"); DispatchKeyValue(laser, "NoiseAmplitude", "1");
DispatchKeyValueFloat(laser, "damage", damage); DispatchKeyValueFloat(laser, "damage", damage);
DispatchKeyValueFloat(laser, "life", duration); DispatchKeyValueFloat(laser, "life", duration);