diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2011-12-03 00:11:19 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2011-12-03 00:11:19 (GMT) |
| commit | cb75e1d924ee33251c65a8bc10288ddd9e978882 (patch) | |
| tree | 42680af35123199d3d4d272c4f07ab8e6b88a9e6 /src/elements/elec.c | |
| parent | 52d2facf913880a8813e5e4bad0b0f40bce0df4f (diff) | |
| download | powder-cb75e1d924ee33251c65a8bc10288ddd9e978882.zip powder-cb75e1d924ee33251c65a8bc10288ddd9e978882.tar.gz | |
Fix spark effect on BOMB, another attempt at TNT (Explosive with more pressure)
Diffstat (limited to 'src/elements/elec.c')
| -rw-r--r-- | src/elements/elec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/elements/elec.c b/src/elements/elec.c index 4c3232e..a054102 100644 --- a/src/elements/elec.c +++ b/src/elements/elec.c @@ -19,7 +19,7 @@ int update_ELEC(UPDATE_FUNC_ARGS) { continue; if ((r&0xFF)==PT_GLAS) { - fire_r[y/CELL][x/CELL] += rand()%200; //D: Doesn't work with OpenGL, also should be here + fire_r[y/CELL][x/CELL] += rand()%200; //D: Doesn't work with OpenGL, also shouldn't be here fire_g[y/CELL][x/CELL] += rand()%200; fire_b[y/CELL][x/CELL] += rand()%200; for (rrx=-2; rrx<=2; rrx++) |
