summaryrefslogtreecommitdiffstats
path: root/nfsw/scenes.py
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-10-26 13:33:58 -0400
committerrsiddharth <s@ricketyspace.net>2019-10-26 13:33:58 -0400
commitb3e44c13e2931b4aea2d88b50b324fa1b6d54f32 (patch)
treed13c818747a8d5f86b9feed5551ee3421e33f13c /nfsw/scenes.py
parentbbe04c3051c1623c9b1d6ca2c8f852085ea48baa (diff)
nfsw: Fix issue related to the mirror in coitus scene.
Diffstat (limited to 'nfsw/scenes.py')
-rw-r--r--nfsw/scenes.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/nfsw/scenes.py b/nfsw/scenes.py
index a40bfa7..9430f6d 100644
--- a/nfsw/scenes.py
+++ b/nfsw/scenes.py
@@ -380,6 +380,9 @@ def coitus(o):
def intro():
+ if fucked():
+ return rj('mirror-intro')
+
return rj('intro-{}'.format(type))
@@ -400,7 +403,10 @@ def coitus(o):
def fuck(q):
r.set('scene:coitus:fucked', 1)
- return rj('fuck-{}'.format(type))
+ return '\n\n'.join([
+ rj('fuck-{}'.format(type)),
+ rj('mirror-intro')
+ ])
def mirror(q):