]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - prvm_edict.c
eliminated dependency on quakedef.h, this file now compile standalone without any...
[xonotic/darkplaces.git] / prvm_edict.c
index 700dd8e5efec37fcfcf5426bfc83051f2e48cf7f..81dd581878cfebf89a21f33e5921fd6723f0cca2 100644 (file)
@@ -1684,10 +1684,6 @@ void PRVM_LoadProgs (const char * filename, int numrequiredfunc, char **required
 
        PRVM_FindOffsets();
 
-       // check if OP_STATE animation is possible in this dat file
-       if (prog->fieldoffsets.nextthink >= 0 && prog->fieldoffsets.frame >= 0 && prog->fieldoffsets.think >= 0 && prog->globaloffsets.self >= 0)
-               prog->flag |= PRVM_OP_STATE;
-
        PRVM_GCALL(init_cmd)();
 
        // init mempools
@@ -2093,7 +2089,7 @@ int PRVM_SetEngineString(const char *s)
                if (prog->knownstrings[i] == s)
                        return -1 - i;
        // new unknown engine string
-       if (developer.integer >= 100)
+       if (developer.integer >= 200)
                Con_Printf("new engine string %p\n", s);
        for (i = prog->firstfreeknownstring;i < prog->numknownstrings;i++)
                if (!prog->knownstrings[i])