diff options
Diffstat (limited to 'src/elements/gbmb.cpp')
| -rw-r--r-- | src/elements/gbmb.cpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/elements/gbmb.cpp b/src/elements/gbmb.cpp deleted file mode 100644 index d1d7c20..0000000 --- a/src/elements/gbmb.cpp +++ /dev/null @@ -1,26 +0,0 @@ -#include "simulation/Element.h" -int update_GBMB(UPDATE_FUNC_ARGS) { - int rx,ry,r; - if (parts[i].life<=0) - { - for (rx=-2; rx<3; rx++) - for (ry=-2; ry<3; ry++) - { - r = pmap[y+ry][x+rx]; - if(!r) - continue; - if((r&0xFF)!=PT_BOMB && (r&0xFF)!=PT_GBMB && - (r&0xFF)!=PT_CLNE && (r&0xFF)!=PT_PCLN && - (r&0xFF)!=PT_DMND) - { - parts[i].life=60; - break; - } - } - } - if(parts[i].life>20) - sim->gravmap[(y/CELL)*(XRES/CELL)+(x/CELL)] = 20; - if(parts[i].life<20 && parts[i].life>=1) - sim->gravmap[(y/CELL)*(XRES/CELL)+(x/CELL)] = -80; - return 0; -} |
