commit b6431b17d1713dacda00a0c360452978b071d956 from: marcus date: Thu Jan 10 19:57:23 2002 UTC If we fill up the line with spaces, we must not fill it with the same attribute. Fill it with '0', the default attribute instead. commit - b65129e33944a4181a44e3a13b939790d594f2e9 commit + b6431b17d1713dacda00a0c360452978b071d956 blob - b9cfe6fda16572bce51a52ae03019598b2e5c7cd blob + 0d3aab2e07e08dc90c93a0c5a202900926d74565 --- de/mud/terminal/VDU.java +++ de/mud/terminal/VDU.java @@ -1045,7 +1045,8 @@ public class VDU extends Component ) { if(charArray[windowBase + l][c + addr] < ' ') { charArray[windowBase + l][c + addr] = ' '; - charAttributes[windowBase + l][c + addr] = currAttr; + charAttributes[windowBase + l][c + addr] = 0; + continue; } addr++; }