diff options
Diffstat (limited to 'src/elements/iron.cpp')
| -rw-r--r-- | src/elements/iron.cpp | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/elements/iron.cpp b/src/elements/iron.cpp deleted file mode 100644 index 391b708..0000000 --- a/src/elements/iron.cpp +++ /dev/null @@ -1,25 +0,0 @@ -#include "simulation/Element.h" - -int update_IRON(UPDATE_FUNC_ARGS) { - int r, rx, ry; - for (rx=-1; rx<2; rx++) - for (ry=-1; ry<2; ry++) - if (x+rx>=0 && y+ry>0 && x+rx<XRES && y+ry<YRES && (rx || ry)) - { - r = pmap[y+ry][x+rx]; - if (!r) - continue; - if ((((r&0xFF) == PT_SALT && 15>(rand()/(RAND_MAX/700))) || - ((r&0xFF) == PT_SLTW && 30>(rand()/(RAND_MAX/2000))) || - ((r&0xFF) == PT_WATR && 5 >(rand()/(RAND_MAX/6000))) || - ((r&0xFF) == PT_O2 && 2 >(rand()/(RAND_MAX/500))) || - ((r&0xFF) == PT_LO2))&& - (!(parts[i].life)) - ) - { - sim->part_change_type(i,x,y,PT_BMTL); - parts[i].tmp=(rand()/(RAND_MAX/10))+20; - } - } - return 0; -} |
