It's my bad last time post this bug and soon be closed and be told to show the differences between versions of gzdoom.
The problem, still, the square monsters will touch the electrical fence and soon be destroyed in g2.1.0/2.1.1 but not happened before (say g2.0.05).
This dropbox link https://www.dropbox.com/s/bbiu5r7tiulmi ... l.mpg?dl=0 is about gzdoom g2.0.05, it's normal.
This dropbox link https://www.dropbox.com/s/63vvuhq48w1vr ... e.mpg?dl=0 is about gzdoom g2.1.1, it's become stupid or fragile.
Square monsters become fragile/stupid (show diff)
Moderator: Graf Zahl
- Graf Zahl
- GZDoom Developer
- Posts: 7148
- Joined: Wed Jul 20, 2005 9:48
- Location: Germany
- Contact:
Re: Square monsters become fragile/stupid (show diff)
What map and position is that? Don't expect me to know everything my memory.
-
- Developer
- Posts: 197
- Joined: Sun Nov 29, 2009 16:36
Re: Square monsters become fragile/stupid (show diff)
That's E1A1 at coordinates (1700, 4800).
- Graf Zahl
- GZDoom Developer
- Posts: 7148
- Joined: Wed Jul 20, 2005 9:48
- Location: Germany
- Contact:
Re: Square monsters become fragile/stupid (show diff)
Well, here's the definition of the offending linedef:
Special 33 is 'Forcefield', which means that activating it will damage the activator. It also has a 'monsterpush' activation flag. So yes, if a monster happens to touch it it's supposed to get damaged.
Code: Select all
linedef // 1379
{
v1 = 1295;
v2 = 1296;
sidefront = 2243;
sideback = 2244;
special = 33;
blocking = true;
twosided = true;
dontpegbottom = true;
clipmidtex = true;
wrapmidtex = true;
playerpush = true;
repeatspecial = true;
monsterpush = true;
alpha = 0.800;
renderstyle = "add";
}
Re: Square monsters become fragile/stupid (show diff)
Could I ask a humble question that why the earlier version won't get so serious damage to die soon ?
- Graf Zahl
- GZDoom Developer
- Posts: 7148
- Joined: Wed Jul 20, 2005 9:48
- Location: Germany
- Contact:
Re: Square monsters become fragile/stupid (show diff)
I have no idea. Maybe some bug fix? As I said, it looks like it works as intended now so maybe some report about this caused it to change.
-
- Developer
- Posts: 259
- Joined: Sun Aug 07, 2011 13:36
Re: Square monsters become fragile/stupid (show diff)
If it helps, the "stupid" behavior was introduced with this commit.Graf Zahl wrote:I have no idea. Maybe some bug fix? As I said, it looks like it works as intended now so maybe some report about this caused it to change.
- Graf Zahl
- GZDoom Developer
- Posts: 7148
- Joined: Wed Jul 20, 2005 9:48
- Location: Germany
- Contact:
Re: Square monsters become fragile/stupid (show diff)
Yup, and that was indeed a bugfix. Turned out that the old version didn't handle it properly.