projects
/
spiritwrak.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c80821b
)
Update DirectionName to LanguageDirection
author
Jason Self
<j@jxself.org>
Tue, 20 Aug 2019 02:03:47 +0000
(19:03 -0700)
committer
Jason Self
<j@jxself.org>
Tue, 20 Aug 2019 02:03:47 +0000
(19:03 -0700)
This has changed since Inform 5
src/special.inf
patch
|
blob
|
history
diff --git
a/src/special.inf
b/src/special.inf
index 7ecf5ca36b4bd152f7b2e2cecbab3ef1a6291535..7e92d63cb30b73ec20f13f8251b2d196d8ed911d 100644
(file)
--- a/
src/special.inf
+++ b/
src/special.inf
@@
-1239,7
+1239,7
@@
has animate;
if (n in location) {
print "^", (The) n, " walks off";
if (dir ~= in_obj or out_obj or u_obj && dir ~= d_obj)
- print " to the ",
(DirectionName) dir.door_dir
;
+ print " to the ",
LanguageDirection(dir.door_dir)
;
print ".^";
}
if (dest == 0) remove n; ! This seems odd - if dest bogus, 'unlink' NPC?