summaryrefslogtreecommitdiff
path: root/src/simulation/elements/H2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/simulation/elements/H2.cpp')
-rw-r--r--src/simulation/elements/H2.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/simulation/elements/H2.cpp b/src/simulation/elements/H2.cpp
index 8d5bf0d..f4f2822 100644
--- a/src/simulation/elements/H2.cpp
+++ b/src/simulation/elements/H2.cpp
@@ -91,21 +91,21 @@ int Element_H2::update(UPDATE_FUNC_ARGS)
{
int j;
float temp = parts[i].temp;
- sim->part_change_type(i,x,y,PT_PLSM);
- parts[i].life = rand()%150+50;
+ sim->create_part(i,x,y,PT_NBLE);
+
j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_NEUT); if (j != -1) parts[j].temp = temp;
- j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_ELEC); if (j != -1) parts[j].temp = temp;
- j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_PHOT);
- if (j != -1) { parts[j].ctype = 0xFFFF00; parts[j].temp = temp; }
+ if (!(rand()%10)) { j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_ELEC); if (j != -1) parts[j].temp = temp; }
+ j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_PHOT); if (j != -1) { parts[j].ctype = 0xFFFF00; parts[j].temp = temp; }
- j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_NBLE); if (j != -1) parts[j].temp = temp;
+ j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_PLSM); if (j != -1) parts[j].temp = temp;
if (rand()%2)
{
j = sim->create_part(-3,x+rand()%3-1,y+rand()%3-1,PT_NBLE);
if (j != -1) { parts[j].tmp = 1; parts[j].temp = temp; }
}
- parts[i].temp += 750+rand()%500;
+
+ parts[i].temp = temp+750+rand()%500;
sim->pv[y/CELL][x/CELL] += 30;
}
}