Commit 61ff1dee authored by Boris Mühmer's avatar Boris Mühmer
Browse files

fix: changed stupid line of code



Signed-off-by: default avatarBoris Mühmer <boris@muehmer.de>
parent 7a1de8fe
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -101,8 +101,7 @@ func (w *Wator) Display() error {
	for y := 0; y < w.Height; y++ {
		for x := 0; x < w.Width; x++ {
			p := position{x: x, y: y}
			s := fmt.Sprintf("%s", w.current.Cells[p].String())
			sb.WriteString(s)
			sb.WriteString(w.current.Cells[p].String())
		}
		sb.WriteString("\n")
	}