Advertisement
Guest User

Untitled

a guest
Feb 7th, 2018
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.04 KB | None | 0 0
  1. diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
  2. index fb45fdc813..073e9b0efd 100644
  3. --- a/source/blender/blenloader/intern/readfile.c
  4. +++ b/source/blender/blenloader/intern/readfile.c
  5. @@ -9174,15 +9174,15 @@ static void expand_nodetree(FileData *fd, Main *mainvar, bNodeTree *ntree)
  6.         expand_idprops(fd, mainvar, node->prop);
  7.  
  8.         for (sock = node->inputs.first; sock; sock = sock->next)
  9. -           expand_doit(fd, mainvar, sock->prop);
  10. +           expand_idprops(fd, mainvar, sock->prop);
  11.         for (sock = node->outputs.first; sock; sock = sock->next)
  12. -           expand_doit(fd, mainvar, sock->prop);
  13. +           expand_idprops(fd, mainvar, sock->prop);
  14.     }
  15.  
  16.     for (sock = ntree->inputs.first; sock; sock = sock->next)
  17. -       expand_doit(fd, mainvar, sock->prop);
  18. +       expand_idprops(fd, mainvar, sock->prop);
  19.     for (sock = ntree->outputs.first; sock; sock = sock->next)
  20. -       expand_doit(fd, mainvar, sock->prop);
  21. +       expand_idprops(fd, mainvar, sock->prop);
  22.  }
  23.  
  24.  static void expand_texture(FileData *fd, Main *mainvar, Tex *tex)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement