diff options
-rwxr-xr-x | mapGen/mapGen.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mapGen/mapGen.sh b/mapGen/mapGen.sh index 5568308..ff35731 100755 --- a/mapGen/mapGen.sh +++ b/mapGen/mapGen.sh @@ -19,7 +19,6 @@ drawMap () { mapText="$(echo "$mapText" | sed 's|\\n|\n|g')" height="$(echo "$mapText" | wc -l)" - #width="$(awk '{print length($0)}' "$inputFile" | sort -nr | sed 1q)" width="$(echo "$mapText" | awk '{print length($0)}' | sort -nr | sed 1q)" height=$((height*cellSize)) width=$((width*cellSize)) |