diff options
| author | jacksonmj <mj-pt@jacksonmj.co.uk> | 2012-05-12 00:32:15 (GMT) |
|---|---|---|
| committer | jacksonmj <mj-pt@jacksonmj.co.uk> | 2012-05-12 12:00:29 (GMT) |
| commit | 9f0cb4857e6a9e2e1a7ca54517a29ff6eff66a1a (patch) | |
| tree | d03dd06043582b45c3a2d66bd12bfc135f77aa4f /src | |
| parent | da6d5b348aacdfcfbb02f63d3eb39b43378214ed (diff) | |
| download | powder-9f0cb4857e6a9e2e1a7ca54517a29ff6eff66a1a.zip powder-9f0cb4857e6a9e2e1a7ca54517a29ff6eff66a1a.tar.gz | |
Don't hide stickman when energy particles pass through his head
Diffstat (limited to 'src')
| -rw-r--r-- | src/graphics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphics.c b/src/graphics.c index 73958ba..488a7b8 100644 --- a/src/graphics.c +++ b/src/graphics.c @@ -1802,7 +1802,7 @@ void render_parts(pixel *vid) flx = parts[i].lastX; fly = parts[i].lastY; - if(photons[ny][nx]&0xFF && !(ptypes[t].properties & TYPE_ENERGY)) + if(photons[ny][nx]&0xFF && !(ptypes[t].properties & TYPE_ENERGY) && t!=PT_STKM && t!=PT_STKM2 && t!=PT_FIGH) continue; //Defaults |
