feat(memory): record spawned, social, proposal, and bond events

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
root
2026-03-08 21:56:42 +00:00
parent 2c4a0d1f75
commit ef7a792750
4 changed files with 86 additions and 5 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ export class SocketServer {
const target = map.findNearestWalkable(data.x, data.y, 3)
?? map.getRandomWalkable();
const npcEntity = spawnNPC(world, map, target);
const npcEntity = spawnNPC(world, map, target, this.gameLoop.eventMemoryService);
this.gameLoop.generateNpcBackstory(npcEntity);
});