mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-08-29 19:00:33 +02:00
TPT: Completely remove SING formation from fusion 81771d8672
This commit is contained in:
@@ -87,7 +87,6 @@ int Element_CO2::update(UPDATE_FUNC_ARGS)
|
||||
|
||||
j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_NEUT); if (j != -1) parts[j].temp = 15000;
|
||||
if (!(rand()%50)) { j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_ELEC); if (j != -1) parts[j].temp = 15000; }
|
||||
//if (rand()%1000 < 1) { j = create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_SING); if (j != -1) { parts[j].temp = 15000; parts[i].life = 3; } }
|
||||
|
||||
parts[i].temp = 15000;
|
||||
sim->pv[y/CELL][x/CELL] += 100;
|
||||
|
@@ -86,12 +86,6 @@ int Element_O2::update(UPDATE_FUNC_ARGS)
|
||||
j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_NEUT); if (j != -1) parts[j].temp = 15000;
|
||||
j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_PHOT); if (j != -1) parts[j].temp = 15000;
|
||||
j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_PLSM); if (j != -1) parts[j].temp = 15000;
|
||||
if (rand()%5 < 2) {
|
||||
j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_SING);
|
||||
if (j != -1) {
|
||||
parts[j].temp = 15000; parts[i].life = rand()%25+50;
|
||||
}
|
||||
}
|
||||
|
||||
parts[i].temp = 15000;
|
||||
sim->pv[y/CELL][x/CELL] += 300;
|
||||
|
Reference in New Issue
Block a user