diff --git a/src/mw_engine/heightmap.clj b/src/mw_engine/heightmap.clj index 330885b..7f91def 100644 --- a/src/mw_engine/heightmap.clj +++ b/src/mw_engine/heightmap.clj @@ -85,11 +85,11 @@ ;; bizarrely, the collage load-util is working for me, but the imagez version isn't. (let [heightmap (filter-image (grayscale)(load-image imagepath))] (map-world - (map-world world transform-altitude (list heigtmap)) + (map-world world transform-altitude (list heightmap)) tag-gradient))) ([imagepath] (let [heightmap (filter-image (grayscale)(load-image imagepath)) world (make-world (.getWidth heightmap) (.getHeight heightmap))] (map-world - (map-world world transform-altitude (list heigtmap)) + (map-world world transform-altitude (list heightmap)) tag-gradient))))