Nolan Darilek

Results 74 issues of Nolan Darilek

Thanks for this! I'm a bit unclear on how removal tracking works, and maybe the cheatsheet can clarify? Specifically: 1. Do I specifically have to track `Changed`? The cheatsheet specifies...

I'm prototyping a concept where the overmap is much larger than the visible map, and is made up of chunk types. Some distance from the map edge, I want to...

I'd like a component similar to the signup component, but for just requesting an email address for subscribing to a MailChimp or other list. I guess this is somewhat related...

Currently the code reads: ``` hoodie.account.on(eventName, function (username) { $rootScope.$apply(function () { service.username = username; }); ``` My understanding of Hoodie is that hoodie.account.username is defined if a user is...

bug
in progress

I have actions that can succeed or fail. Independently of that, they generally need to run some cleanup to ensure that scorers know what has already been handled. It'd be...

enhancement
help wanted

Ran into a surprising behavior. I have an `Investigate` action that sets `ActionState::Success` when pathfinding reaches the destination. I then tried to add a component that triggered a wait and...

I'm trying to use the {{toc}} macro in Redmine 1.0.1 with the latest version of the plugin, but am getting the following in my page: Error executing the toc macro...

assigned

I have code like: ``` class MapFragment extends Fragment with Contexts[Fragment] with SharedPreferences.OnSharedPreferenceChangeListener { implicit var ctx:Context = _ override def onActivate(a:Activity) { ctx = a val locationService = new...

package.json contains: ``` "types": "dist/index.d.ts" ``` But, when installed from NPM, this file isn't included. Thanks.

First, thanks for this library! I've enjoyed reading your RLTK tutorial, and while I've built other games, it has inspired me to dip a toe into roguelike development. I'm trying...