Minor typos to fix in GZDoom's Lights PK3 file

Bugs that have been investigated and resolved somehow.

Moderator: GZDoom Developers

Forum rules
Please don't bump threads here if you have a problem - it will often be forgotten about if you do. Instead, make a new thread here.
Post Reply
User avatar
Hexereticdoom
Posts: 654
Joined: Thu Aug 08, 2013 1:30 pm
Graphics Processor: nVidia with Vulkan support
Location: Spain
Contact:

Minor typos to fix in GZDoom's Lights PK3 file

Post by Hexereticdoom »

Hello, recently I have made some in-game tests and detected some minor -but slightly annoying- misprints in GZDoom's internal light definitions file, that make some object lights not working correctly, here they are some of them:

Code: Select all

// Beta Plasma 2
...

flickerlight PLASMA1_X1 <=== (This should be PLASMA2_X1)
{
    color 0.9 0.2 0.2
    size 96
    secondarySize 108
    chance 0.4
	attenuate 1
}

flickerlight PLASMA1_X2 <=== (This should be PLASMA2_X2)
{
    color 0.6 0.2 0.2
    size 120
    secondarySize 132
    chance 0.4
	attenuate 1
}

flickerlight PLASMA1_X3 <=== (This should be PLASMA2_X3)
{
    color 0.2 0.0 0.0
    size 12
    secondarySize 24
    chance 0.4
	attenuate 1
}

...

Code: Select all

// BFG
...

flickerlight BFGBALL_X4
{
    color 0.4 0.7 0.4
    size 84
    secondarySize 96
    chance 0.3
	attenuate 1
	attenuate 1 <=== (Remove this duplicate property)
}

...
I'll keep posting here in case I discover any more. Thanks for your attention! 8-)
_mental_
 
 
Posts: 3812
Joined: Sun Aug 07, 2011 4:32 am

Re: Minor typos to fix in GZDoom's Lights PK3 file

Post by _mental_ »

Fixed in 5b452b5.
Post Reply

Return to “Closed Bugs [GZDoom]”