Correctly reduce left click item delay
This commit is contained in:
+10
-1
@@ -1,7 +1,16 @@
|
||||
module Dodge.TestString where
|
||||
|
||||
import Dodge.Data.Universe
|
||||
import Control.Lens
|
||||
import Data.Maybe
|
||||
|
||||
testStringInit :: Universe -> [String]
|
||||
testStringInit _ = []
|
||||
testStringInit u = [
|
||||
show $ u ^? uvWorld . hammers . ix DoubleMouseHam
|
||||
, show $ u ^? uvWorld . cWorld . creatures . ix 0 . crLeftInvSel . _Just
|
||||
, fromMaybe "" $ do
|
||||
i <- u ^? uvWorld . cWorld . creatures . ix 0 . crLeftInvSel . _Just
|
||||
h <- u ^? uvWorld . cWorld . creatures . ix 0 . crInv . ix i . itUse . leftHammer
|
||||
return $ show h
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user