home
·
contact
·
privacy
projects
/
plomrogue
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1f9cc19
)
Server: Fix buggy list of directions in try_thing_proliferation().
author
Christian Heller
<c.heller@plomlompom.de>
Wed, 4 Feb 2015 04:35:44 +0000
(
05:35
+0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Wed, 4 Feb 2015 04:35:44 +0000
(
05:35
+0100)
src/server/things.c
patch
|
blob
|
history
diff --git
a/src/server/things.c
b/src/server/things.c
index 85503e9a8a874d556ae38a669945e5e819b36870..f114ea4abbb85933acde8a96df287d55808c8419 100644
(file)
--- a/
src/server/things.c
+++ b/
src/server/things.c
@@
-309,7
+309,7
@@
extern void try_thing_proliferation(struct Thing * t)
{
struct yx_uint8 candidates[6];
uint8_t n_candidates = 0;
- char dirs[7] = "
d
xswed";
+ char dirs[7] = "
c
xswed";
struct yx_uint8 test = t->pos;
uint8_t i;
for (i = 0; i < strlen(dirs); i++)