TPT: Fix stationary photons being created by PCLN/PBCN 91163c44ab
This commit is contained in:
parent
fd09db2345
commit
7682094f13
@ -59,12 +59,19 @@ int update_PBCN(UPDATE_FUNC_ARGS) {
|
||||
}
|
||||
if (parts[i].ctype>0 && parts[i].ctype<PT_NUM && parts[i].life==10) {
|
||||
if (parts[i].ctype==PT_PHOT) {//create photons a different way
|
||||
for (rx=-1; rx<2; rx++) {
|
||||
for (ry=-1; ry<2; ry++) {
|
||||
int r = sim->create_part(-1, x+rx, y+ry, parts[i].ctype);
|
||||
if (r!=-1) {
|
||||
parts[r].vx = rx*3;
|
||||
parts[r].vy = ry*3;
|
||||
for (rx=-1; rx<2; rx++)
|
||||
{
|
||||
for (ry = -1; ry < 2; ry++)
|
||||
{
|
||||
if (rx || ry)
|
||||
{
|
||||
int r = sim->create_part(-1, x + rx, y + ry,
|
||||
parts[i].ctype);
|
||||
if (r != -1)
|
||||
{
|
||||
parts[r].vx = rx * 3;
|
||||
parts[r].vy = ry * 3;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -49,12 +49,19 @@ int update_PCLN(UPDATE_FUNC_ARGS) {
|
||||
}
|
||||
if (parts[i].ctype>0 && parts[i].ctype<PT_NUM && parts[i].life==10) {
|
||||
if (parts[i].ctype==PT_PHOT) {//create photons a different way
|
||||
for (rx=-1; rx<2; rx++) {
|
||||
for (ry=-1; ry<2; ry++) {
|
||||
int r = sim->create_part(-1, x+rx, y+ry, parts[i].ctype);
|
||||
if (r!=-1) {
|
||||
parts[r].vx = rx*3;
|
||||
parts[r].vy = ry*3;
|
||||
for (rx=-1; rx<2; rx++)
|
||||
{
|
||||
for (ry = -1; ry < 2; ry++)
|
||||
{
|
||||
if (rx || ry)
|
||||
{
|
||||
int r = sim->create_part(-1, x + rx, y + ry,
|
||||
parts[i].ctype);
|
||||
if (r != -1)
|
||||
{
|
||||
parts[r].vx = rx * 3;
|
||||
parts[r].vy = ry * 3;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user