X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fuser.phh;h=0ac092ae0ac88d913f03e738db0c95a76e353320;hb=ee5ecba6c30b2ff23e7683f40d93057c6b678a29;hp=2caf30a94f1f0cbe5fb55d8072bfaf3eac0162ef;hpb=39cd2a5ca00a2984bd8970ddf630314c246d3fc0;p=brisk.git diff --git a/web/Obj/user.phh b/web/Obj/user.phh index 2caf30a..0ac092a 100644 --- a/web/Obj/user.phh +++ b/web/Obj/user.phh @@ -83,8 +83,8 @@ $mlang_indrd = array( class User { var $room; // reference to the room where the user is registered - var $idx; // index in the users array when you are in game - var $idx_orig; // index in the users array when you aren't in game + var $idx; // index in the room users array when you are in game + var $idx_orig; // index in the room table users array when you aren't in game var $code; // authentication code var $name; // name of the user var $sess; // session of the user @@ -640,6 +640,12 @@ class User { for ($i = $cur_step ; $i < $this->step ; $i++) { $ii = $i % COMM_N; log_rd2("ADDED TO THE STREAM: ".$this->comm[$ii]); + if ($this->comm[$ii] == "") { + if ($i == $cur_step) + continue; + else + break; + } $ret .= $this->comm[$ii]; } $new_stat = $this->stat;