mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-04-05 06:52:36 +02:00
MIX won't mix together elements with different states now
This commit is contained in:
parent
b65e94900e
commit
95fde9d699
@ -15,6 +15,7 @@
|
||||
#define TYPE_SOLID 0x00004 //4 Solids
|
||||
#define TYPE_GAS 0x00008 //8 Gasses (Includes plasma)
|
||||
#define TYPE_ENERGY 0x00010 //16 Energy (Thunder, Light, Neutrons etc.)
|
||||
#define STATE_FLAGS 0x0001F
|
||||
#define PROP_CONDUCTS 0x00020 //32 Conducts electricity
|
||||
#define PROP_BLACK 0x00040 //64 Absorbs Photons (not currently implemented or used, a photwl attribute might be better)
|
||||
#define PROP_NEUTPENETRATE 0x00080 //128 Penetrated by neutrons
|
||||
|
@ -32,7 +32,7 @@ int Tool_Mix::Perform(Simulation * sim, Particle * cpart, int x, int y, float st
|
||||
if(!thatPart)
|
||||
return 0;
|
||||
|
||||
if(!(sim->elements[thatPart&0xFF].Properties & (TYPE_PART | TYPE_LIQUID | TYPE_GAS)))
|
||||
if ((sim->elements[thisPart&0xFF].Properties&STATE_FLAGS) != (sim->elements[thatPart&0xFF].Properties&STATE_FLAGS))
|
||||
return 0;
|
||||
|
||||
sim->pmap[y][x] = thatPart;
|
||||
|
Loading…
x
Reference in New Issue
Block a user