-
Notifications
You must be signed in to change notification settings - Fork 90
Possible minor bug found, with initializing Actors #59
Copy link
Copy link
Open
Description
| if ("min_use_dist" !in actor) min_use_dist <- MIN_USE_DIST |
Hello, I don't think this was intended...but it looks like two global variables are created on these two lines called: min_use_dist and min_talk_dist.
Maybe the code should have been...
if ("min_use_dist" !in actor) actor.min_use_dist <- MIN_USE_DIST
if ("min_talk_dist" !in actor) actor.min_talk_dist <- MIN_TALK_DIST
I think they should be tacked onto the actor object and not global.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels