dirs[] in act.movement.cpp ~ line 200Expand source
// As seen in act.movement.cpp around line 200. (The order of these is VERY important, do not mess them around)
const char* const dirs[] =
{
"north",
"east",
"south",
"west",
"up",
"down",
"outside",
"inside",
"northeast",
"northwest",
"southeast",
"southwest",
"\n"
};
Add Comment