From 48cd8419bb274345fe386d47843f9aa16910e090 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Wed, 27 Sep 2017 11:35:22 -0400 Subject: lua-scripted wandering --- src/world.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/world.cpp') diff --git a/src/world.cpp b/src/world.cpp index 7904c4f..9f57b87 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -350,9 +350,10 @@ void WorldSystem::loader(void) entity.assign(wxml, abcd); else if (tname == "Grounded") entity.assign(); // no need to pass xmls... - else if (tname == "Wander") - entity.assign(); - else if (tname == "Hop") + else if (tname == "Wander") { + auto script = abcd->GetText(); + entity.assign(script != nullptr ? script : ""); + } else if (tname == "Hop") entity.assign(); else if (tname == "Health") entity.assign(wxml, abcd); -- cgit v1.2.3