Hexen game configuration: corrected an error where things 78 ("Tall Tree 1") and 79 ("Tall Tree 2") had their sprites interchanged

This commit is contained in:
biwa 2020-10-04 10:28:24 +02:00
parent a2c87358ea
commit 70bfc2043b

View file

@ -758,13 +758,13 @@ obstacles
78
{
title = "Tall Tree 1";
sprite = "TRE5A0";
sprite = "TRE4A0";
width = 15;
}
79
{
title = "Tall Tree 2";
sprite = "TRE4A0";
sprite = "TRE5A0";
width = 15;
}
8067