Disable printing. I broke it

This commit is contained in:
Brian Buller 2017-12-19 08:05:29 -06:00
parent c520216ddd
commit ef98db2967
1 changed files with 2 additions and 2 deletions

View File

@ -28,6 +28,8 @@ func main() {
// Grab the window size
if len(os.Args) > 1 {
if os.Args[1] == "-print" {
fmt.Println("Not working right now... Sorry.")
os.Exit(1)
printMap = true
}
}
@ -77,8 +79,6 @@ func main() {
PrintStatus()
}
fmt.Println("Ctrl+C to Quit")
for {
}
}
func GetNodesAsString(nodes []byte) string {