module function call

Post Reply
aitchon
Posts: 116
Joined: Mon Jan 22, 2007 10:30 am

module function call

Post by aitchon »

I ran a texis -wipelib to delete all modules from the default db. When I run my script that calls a function from a module, it still looks like it's using a version of the module. I would expect a compile error, since that module doesn't exist anymore. Is it possible that it's looking for a version in another db?
User avatar
Kai
Site Admin
Posts: 1270
Joined: Tue Apr 25, 2000 1:27 pm

module function call

Post by Kai »

It may not have recompiled the script. Normally updating a module flags all scripts that depend on it as needing recompilation, but -wipelib doesn't do that, as it is just removing the library. Try touching the source of the script, or removing the .vtx file.
aitchon
Posts: 116
Joined: Mon Jan 22, 2007 10:30 am

module function call

Post by aitchon »

That did it. Thanks Kai!
Post Reply