Fixed: copied sidedef settings were not applied when using "Paste properties" and "Paste properties special" actions in Doom/Hexen map formats.

This commit is contained in:
MaxED 2016-11-11 12:54:38 +00:00
parent 4306e277e6
commit 8349392829

View file

@ -631,8 +631,8 @@ namespace CodeImp.DoomBuilder.BuilderModes
}
// Should we bother?
if(!General.Map.UDMF) return;
if(General.Map.UDMF)
{
// Apply fields
foreach(Linedef l in lines)
{
@ -656,6 +656,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
// Apply UI fields
ApplyUIFields(lines, settings);
}
// Apply sidedef settings
if(sidesettings != null)