mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2025-02-07 08:21:10 +00:00
Fixed, Visual mode: rendering effects of "Slope floor/ceiling to here" things (9500/9501) should not be applied when their arg0 is 0.
This commit is contained in:
parent
600851e263
commit
2e32b8839a
2 changed files with 5 additions and 2 deletions
|
@ -941,7 +941,7 @@ zdoom
|
|||
height = 8;
|
||||
arg0
|
||||
{
|
||||
title = "Line";
|
||||
title = "Line Tag";
|
||||
type = 15;
|
||||
}
|
||||
}
|
||||
|
@ -953,7 +953,7 @@ zdoom
|
|||
height = 4;
|
||||
arg0
|
||||
{
|
||||
title = "Line";
|
||||
title = "Line Tag";
|
||||
type = 15;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,6 +30,9 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
// This makes sure we are updated with the source linedef information
|
||||
public override void Update()
|
||||
{
|
||||
//mxd. Skip if arg0 is 0.
|
||||
if(thing.Args[0] == 0) return;
|
||||
|
||||
ThingData td = data.Mode.GetThingData(thing);
|
||||
Thing t = thing;
|
||||
|
||||
|
|
Loading…
Reference in a new issue