Page MenuHomeFeedback Tracker

Wrong entry in a3\data_f\ParticleEffects\config.cpp, line 29616
Assigned, WishlistPublic

Description

In a3\data_f\ParticleEffects\config.cpp, line 29616 (ArmA 3 v1.54 stable), "type" is specified as "GrenadeExp1" (class RocketExplosion -> class GrenadeExp1). However, there is no "class GrenadeExp1" in CfgCloudlets or CfgLights, onyl "class GrenadeExp".

Other classes like class IEDMineSmallExplosion -> class GrenadeExp1 use the correct "type = "GrenadeExp";", which is defined in CfgCloudlets.

Details

Legacy ID
3502282833
Severity
None
Resolution
Open
Reproducibility
Always
Category
Config
Additional Information

class RocketExplosion
{
class LightExp
{

		simulation = "light";
		type = "ExploLightMed";
		position[] = {0,0,0};
		intensity = 0.001;
		interval = 1;
		lifeTime = 0.5;

};
class GrenadeExp1
{

		simulation = "particles";
		type = "GrenadeExp1";    //<-------should be "GrenadeExp"
		position[] = {0,0,0};
		intensity = 1;
		interval = 1;
		lifeTime = 0.5;

};
class SmallSmoke1
{

		simulation = "particles";
		type = "SmallSmokeFast1";
		position[] = {0,0,0};
		intensity = 1;
		interval = 1;
		lifeTime = 1;

};
};

Event Timeline

TheConen edited Additional Information. (Show Details)Nov 24 2015, 4:13 PM
TheConen set Category to Config.
TheConen set Reproducibility to Always.
TheConen set Severity to None.
TheConen set Resolution to Open.
TheConen set Legacy ID to 3502282833.May 8 2016, 1:07 PM
TheConen edited a custom field.
Adam added a comment.Dec 9 2015, 8:48 AM

Issue will be fixed on devbranch soon™. Could you check it out please?