mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-10 06:41:49 +00:00
Fix to SRB2Type
This commit is contained in:
parent
a6d99339ce
commit
1dbc431aeb
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
// Collect Things...
|
||||
foreach(Thing t in General.Map.Map.Things)
|
||||
{
|
||||
ThingTypeInfo info = General.Map.Data.GetThingInfoEx(t.Type);
|
||||
ThingTypeInfo info = General.Map.Data.GetThingInfoEx(t.SRB2Type);
|
||||
if(info == null) continue;
|
||||
switch(info.ClassName.ToLowerInvariant())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue