diff options
author | olpc user <olpc@xo-5d-f7-86.localdomain> | 2020-01-05 09:21:51 -0800 |
---|---|---|
committer | olpc user <olpc@xo-5d-f7-86.localdomain> | 2020-01-05 09:21:51 -0800 |
commit | 028c06b452f45df329116c0d0017ad2cd8ee2acc (patch) | |
tree | e3798d60469c17e8a27df48a51f6e1b9bfa0ccda /starts/meaning-vm/level-2/funcs.cpp | |
parent | fddefb99e2f333ab8bde6fc2322f184e0dc1f86d (diff) | |
download | standingwithresilience-028c06b452f45df329116c0d0017ad2cd8ee2acc.tar.gz standingwithresilience-028c06b452f45df329116c0d0017ad2cd8ee2acc.zip |
working on bugs
Diffstat (limited to 'starts/meaning-vm/level-2/funcs.cpp')
-rw-r--r-- | starts/meaning-vm/level-2/funcs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starts/meaning-vm/level-2/funcs.cpp b/starts/meaning-vm/level-2/funcs.cpp index c5e1dd5..70e4c53 100644 --- a/starts/meaning-vm/level-2/funcs.cpp +++ b/starts/meaning-vm/level-2/funcs.cpp @@ -65,7 +65,7 @@ ref makehabitinformationorder(ref habit) // i'm guessing part of the meaning of laughter is spreading learning around something being relevent to deprioritize in emergencies, but useful to learn from when bored. ref order = makeconcept(); - ref last = habit; + ref last = habit.get("information-needed"); while (last.linked("next-information")) { last = last.get("next-information"); order.link("information-order", last.get("information")); |