mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-04-04 06:22:47 +02:00
Fix ctrl+MIX not actually doing anything, and shift+MIX being too powerful
This commit is contained in:
parent
57be4ef498
commit
1c15b426d5
@ -17,7 +17,7 @@ int Tool_Mix::Perform(Simulation * sim, Particle * cpart, int x, int y, float st
|
||||
if(rand() % 100 != 0)
|
||||
return 0;
|
||||
|
||||
int distance = strength * 10;
|
||||
int distance = (int)(std::pow(strength, .5) * 10);
|
||||
|
||||
if(!(sim->elements[thisPart&0xFF].Properties & TYPE_PART))
|
||||
return 0;
|
||||
@ -42,6 +42,8 @@ int Tool_Mix::Perform(Simulation * sim, Particle * cpart, int x, int y, float st
|
||||
sim->pmap[newY][newX] = thisPart;
|
||||
sim->parts[thisPart>>8].x = newX;
|
||||
sim->parts[thisPart>>8].y = newY;
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
Tool_Mix::~Tool_Mix() {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user