diff --git a/src/cc/rogue/command.c b/src/cc/rogue/command.c index c57c0615f..830fa2356 100644 --- a/src/cc/rogue/command.c +++ b/src/cc/rogue/command.c @@ -20,7 +20,6 @@ void command(struct rogue_state *rs) { - static FILE *fp2; register char ch; register int ntimes = 1; /* Number of player moves */ char *fp; @@ -466,25 +465,8 @@ over: if (!after) ntimes++; } - if ( fp2 == 0 ) - rs->logfp = fp2 = fopen("commands","wb"); - if ( fp2 != 0 ) - { - fprintf(fp2,"after if (%c).%d seed.%llu\n",ch,ch,(long long)seed); - fflush(fp2); - } do_daemons(rs,AFTER); - if ( fp2 != 0 ) - { - fprintf(fp2,"after daemons (%c).%d seed.%llu isring.%d teleport.%d || search.%d teleport.%d\n",ch,ch,(long long)seed,ISRING(LEFT, R_SEARCH),ISRING(LEFT, R_TELEPORT),ISRING(RIGHT, R_SEARCH),ISRING(RIGHT, R_TELEPORT)); - fflush(fp2); - } - do_fuses(rs,AFTER,fp2); - if ( fp2 != 0 ) - { - fprintf(fp2,"after fuses (%c).%d seed.%llu isring.%d teleport.%d || search.%d teleport.%d\n",ch,ch,(long long)seed,ISRING(LEFT, R_SEARCH),ISRING(LEFT, R_TELEPORT),ISRING(RIGHT, R_SEARCH),ISRING(RIGHT, R_TELEPORT)); - fflush(fp2); - } + do_fuses(rs,AFTER,0); if (ISRING(LEFT, R_SEARCH)) search(rs); else if (ISRING(LEFT, R_TELEPORT) && rnd(50) == 0) @@ -493,11 +475,6 @@ over: search(rs); else if (ISRING(RIGHT, R_TELEPORT) && rnd(50) == 0) teleport(rs); - if ( fp2 != 0 ) - { - fprintf(fp2,"after command (%c).%d seed.%llu\n",ch,ch,(long long)seed); - fflush(fp2); - } } /* diff --git a/src/cc/rogue/daemon.c b/src/cc/rogue/daemon.c index 118ca3c37..c98b10f88 100644 --- a/src/cc/rogue/daemon.c +++ b/src/cc/rogue/daemon.c @@ -187,6 +187,8 @@ char *actionfunc_str(char *str,void *ptr) strcpy(str,"rollwand"); else if ( ptr == (void *)visuals ) strcpy(str,"visuals"); + else if ( ptr == (void *)turn_see ) + strcpy(str,"turn_see"); else strcpy(str,"no match"); return(str); } diff --git a/src/cc/rogue/io.c b/src/cc/rogue/io.c index 11321763a..ad22407f6 100644 --- a/src/cc/rogue/io.c +++ b/src/cc/rogue/io.c @@ -160,7 +160,7 @@ readchar(struct rogue_state *rs) if ( rs->ind < rs->numkeys ) { c = rs->keystrokes[rs->ind++]; - if ( 1 ) + if ( 0 ) { static FILE *fp; static int32_t counter; if ( fp == 0 )