From 7543a3d05e97252ac9791deb8a5682caf153bdac Mon Sep 17 00:00:00 2001 From: jacksonmj Date: Sun, 24 Apr 2011 00:09:07 +0100 Subject: [PATCH] Fix plut lava type already set to ctype and ctype already cleared, whoops. --- src/powder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/powder.c b/src/powder.c index 8d1742322..54d9e3dd2 100644 --- a/src/powder.c +++ b/src/powder.c @@ -1562,10 +1562,10 @@ void update_particles_i(pixel *vid, int start, int inc) parts[i].tmp = 0; t = PT_BMTL; } - if (parts[i].ctype==PT_PLUT) + if (t==PT_PLUT) { parts[i].tmp = 0; - t = parts[i].ctype = PT_LAVA; + t = PT_LAVA; } } }