From 3d557b68b07826c6f976c6a6ea74b7fdf306c3ed Mon Sep 17 00:00:00 2001
From: "alexey.lysiuk" <alexey.lysiuk@gmail.com>
Date: Sun, 20 Oct 2019 09:55:37 +0300
Subject: [PATCH] - fixed broken walkthrough of Restoring Deimos MAP03

---
 wadsrc/static/zscript/level_compatibility.zs | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/wadsrc/static/zscript/level_compatibility.zs b/wadsrc/static/zscript/level_compatibility.zs
index 28e7d54e8a..fba96b1df2 100644
--- a/wadsrc/static/zscript/level_compatibility.zs
+++ b/wadsrc/static/zscript/level_compatibility.zs
@@ -1429,6 +1429,14 @@ class LevelCompatibility native play
 				SetThingFlags(2169,0);
 				SetThingFlags(2168,0);
 				SetThingFlags(2167,0);
+				break;
+			}
+
+			case '66B931B03618EDE5C022A1EC87189158': // Restoring Deimos MAP03
+			{
+				// Missing teleport destination on easy skill
+				SetThingSkills(62, 31);
+				break;
 			}
 		}
 	}