diff options
| author | Jacob1 <jfu614@gmail.com> | 2012-04-05 23:31:52 (GMT) |
|---|---|---|
| committer | Jacob1 <jfu614@gmail.com> | 2012-05-24 15:02:42 (GMT) |
| commit | e4686724ac4203568b82002bc849df55c9205f8c (patch) | |
| tree | a0389f68e871fd18d0cce97b7fc0b3baf0715785 /src/elements/O2.c | |
| parent | e79d18c58cb6a1cd5c744643fa10cadaea93a71d (diff) | |
| download | powder-e4686724ac4203568b82002bc849df55c9205f8c.zip powder-e4686724ac4203568b82002bc849df55c9205f8c.tar.gz | |
limit amount of ELEC produced to prevent infinite reactions
Diffstat (limited to 'src/elements/O2.c')
| -rw-r--r-- | src/elements/O2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/elements/O2.c b/src/elements/O2.c index 737b571..5152478 100644 --- a/src/elements/O2.c +++ b/src/elements/O2.c @@ -18,7 +18,7 @@ int update_O2(UPDATE_FUNC_ARGS) { int r,rx,ry; - if (parts[i].temp < 9773.15) + if (parts[i].temp < 9273.15) { for (rx=-2; rx<3; rx++) for (ry=-2; ry<3; ry++) |
