mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-04-05 06:52:36 +02:00
fix flood fill delete on normal particles also deleting photons
This commit is contained in:
parent
998f5a4cad
commit
9cab6959b6
@ -1650,7 +1650,23 @@ int Simulation::FloodParts(int x, int y, int fullc, int cm, int flags)
|
||||
// fill span
|
||||
for (x=x1; x<=x2; x++)
|
||||
{
|
||||
if (CreateParts(x, y, 0, 0, fullc, flags))
|
||||
if (!fullc)
|
||||
{
|
||||
if (elements[cm].Properties&TYPE_ENERGY)
|
||||
{
|
||||
if (photons[y][x])
|
||||
{
|
||||
kill_part(photons[y][x]>>8);
|
||||
created_something = 1;
|
||||
}
|
||||
}
|
||||
else if (pmap[y][x])
|
||||
{
|
||||
kill_part(pmap[y][x]>>8);
|
||||
created_something = 1;
|
||||
}
|
||||
}
|
||||
else if (CreateParts(x, y, 0, 0, fullc, flags))
|
||||
created_something = 1;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user