summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilip <philip@philip-linuxlaptop.(none)>2010-11-13 02:14:47 (GMT)
committer Philip <philip@philip-linuxlaptop.(none)>2010-11-13 02:14:47 (GMT)
commit02067b1587821349e80cda5a0b98153c332a69ee (patch)
tree13c4596e73efcc3d77128d04e97990499667b831 /src
parentebcded767e1e35a3431b4938cb9dd39b6b8ad188 (diff)
downloadpowder-02067b1587821349e80cda5a0b98153c332a69ee.zip
powder-02067b1587821349e80cda5a0b98153c332a69ee.tar.gz
Fix movement of fog and fixed life exchange.
Diffstat (limited to 'src')
-rw-r--r--src/powder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/powder.c b/src/powder.c
index 04999fb..fa9f02b 100644
--- a/src/powder.c
+++ b/src/powder.c
@@ -2036,7 +2036,7 @@ void update_particles_i(pixel *vid, int start, int inc)
else if(rt==PT_FOG&&parts[r>>8].life>0)
{
t = parts[i].type = PT_FOG;
- parts[i].life = parts[r>>8].life/2;
+ parts[i].life = parts[r>>8].life;
}
}
}