mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-22 20:02:48 +00:00
Visual Mode: fixed an issue where trying to apply a rotation to things that were not seen yet would cause a crash
This commit is contained in:
parent
3a7d926704
commit
809bb24ae0
1 changed files with 1 additions and 1 deletions
|
@ -1462,7 +1462,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
||||||
|
|
||||||
// Things are automatically selected on creation
|
// Things are automatically selected on creation
|
||||||
foreach (Thing t in General.Map.Map.GetSelectedThings(true))
|
foreach (Thing t in General.Map.Map.GetSelectedThings(true))
|
||||||
CreateVisualThing(t);
|
allthings[t] = CreateVisualThing(t);
|
||||||
|
|
||||||
// For linedefs it's a bit more complicated...
|
// For linedefs it's a bit more complicated...
|
||||||
foreach (Linedef ld in General.Map.Map.GetSelectedLinedefs(true))
|
foreach (Linedef ld in General.Map.Map.GetSelectedLinedefs(true))
|
||||||
|
|
Loading…
Reference in a new issue