From 705ecd7ef5774e194e7ea3002365788de3c993d9 Mon Sep 17 00:00:00 2001
From: klorpa <30924131+klorpa@users.noreply.github.com>
Date: Mon, 3 Dec 2018 00:45:21 -0600
Subject: [PATCH] FinalIHope

---
 devNotes/scene-guide.txt | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/devNotes/scene-guide.txt b/devNotes/scene-guide.txt
index ee0859f2bdf..7df01438392 100644
--- a/devNotes/scene-guide.txt
+++ b/devNotes/scene-guide.txt
@@ -112,7 +112,7 @@ And then fill it in later than it is to end up with a situation where you have a
 	<<set _targetOrifice = "vagina">>
 <<else>>
 	<<set _targetOrifice = "asshole">>
-<</if>
+<</if>>
 And then, when you need it, do "you fuck her _targetOrifice" in sixteen different places without having the pain in the ass of copy/pasting the same if/else clause every time.
 
 3. INDENT YOUR LOGIC. USE TABS. I'm serious. Don't question me. It will make EVERYONE hate you, when they have to deal with your code, if it's not indented properly.
@@ -135,8 +135,8 @@ This is much easier to read:
 		<<if $cond7>>
 			<<if $cond8>>
 				whatever
-			</if>
-		</if>>
+			<</if>>
+		<</if>>
 	<</if>>
 <</if>>
 than this:
@@ -158,8 +158,8 @@ whatever
 <<if $cond7>>
 <<if $cond8>>
 whatever
-</if>
-</if>>
+<</if>>
+<</if>>
 <</if>>
 <</if>>
 
-- 
GitLab