summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/powder.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/powder.c b/src/powder.c
index 3ca1056..c84d71c 100644
--- a/src/powder.c
+++ b/src/powder.c
@@ -74,11 +74,13 @@ int try_move(int i, int x, int y, int nx, int ny)
e = eval_move(parts[i].type, nx, ny, &r);
if(!e) {
- if(!legacy_enable) {
+ if(!legacy_enable && parts[i].type==PT_PHOT) {
if((r >> 8) < PT_NUM)
- parts[i].temp = parts[r>>8].temp = restrict_flt(parts[r>>8].temp+parts[i].temp/2, MIN_TEMP, MAX_TEMP);
+ parts[i].temp = parts[r>>8].temp =
+ restrict_flt((parts[r>>8].temp+parts[i].temp)/2, MIN_TEMP, MAX_TEMP);
}
return 0;
+ return 0;
}
if(e == 2)
return 1;