couple bugfixes.

This commit is contained in:
2015-02-04 07:30:12 -08:00
parent ae7b3356b9
commit 41e75513f5
5 changed files with 7 additions and 5 deletions

View File

@@ -331,6 +331,6 @@
entities)
(if (= :night (get-in entities [:state :time]))
(make-night entities)
(utils/remove-interaction :rock)
(utils/remove-interaction entities :rock)
)))
:start-pos [203 1])))

View File

@@ -115,6 +115,8 @@
(actions/transition-music entities :pull-sword :town-1)
(actions/do-dialogue entities :ego "That was weird."
:ego "I have to go show my friends!")
(walk-to-blergh entities)

View File

@@ -122,7 +122,7 @@
:else (do-initial-peddler-conversation entities)))
(defn should-block? [entities]
(and (:night (get-in @entities [:state :time]))
(and (= :night (get-in @entities [:state :time]))
(actions/has-obtained? entities :flask-2)
(not (actions/has-item? entities :magic-slingshot))))