浏览代码

Off by one. Display what was selected. idle_event.

Steve Thielemann 4 年之前
父节点
当前提交
a3d6b2f23f
共有 1 个文件被更改,包括 6 次插入3 次删除
  1. 6 3
      wordplay.cpp

+ 6 - 3
wordplay.cpp

@@ -58,20 +58,23 @@ void harry_idle_event(int fd) {
   int total_possible =
       have_userinfo ? total_phrases + total_user_phrases : total_phrases;
 
-  ZF_LOGD("%d total %d console @ %d,%d", have_userinfo, total_possible,
-          console.posx, console.posy);
   do {
     r = randint(total_possible);
   } while (last_seen_harry_event.seen_before(r));
 
+  ZF_LOGD("have %d picked %d total %d console @ %d,%d", have_userinfo, r,
+          total_possible, console.posx, console.posy);
+
   std::string selected;
-  if (r > total_phrases) {
+  if (r >= total_phrases) {
     selected = user_phrases[r - total_phrases];
     replace(selected, "USER", fullname);
     replace(selected, "NICK", username);
   } else
     selected = phrases[r];
 
+  ZF_LOGD("Selected: %s", selected.c_str());
+
   int color = randint(15) + 1;
   // %02d = std::setfill('0') << std::setw(2) << (int)
   /*