diff --git a/src/gs-entbase/client/prop_static.qc b/src/gs-entbase/client/prop_static.qc index c98f90dd..9adeae06 100644 --- a/src/gs-entbase/client/prop_static.qc +++ b/src/gs-entbase/client/prop_static.qc @@ -33,6 +33,10 @@ void prop_static::SpawnKey(string strKey, string strValue) { switch (strKey) { + case "frame": + case "sequence": + frame = stof(strValue); + break; case "modelscale": scale = stof(strValue); break; diff --git a/src/gs-entbase/server/prop_dynamic.qc b/src/gs-entbase/server/prop_dynamic.qc index 01c4f1bc..3745392c 100644 --- a/src/gs-entbase/server/prop_dynamic.qc +++ b/src/gs-entbase/server/prop_dynamic.qc @@ -53,6 +53,10 @@ void prop_dynamic::SpawnKey(string strKey, string strValue) { switch (strKey) { + case "frame": + case "sequence": + frame = stof(strValue); + break; case "solid": float s = stof(strValue);