Skip to content

Commit

Permalink
fix thing cat
Browse files Browse the repository at this point in the history
  • Loading branch information
code34 committed Sep 18, 2018
1 parent 89ddd13 commit fd5ad7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vitems/oo_randomstuff.sqf
Expand Up @@ -56,7 +56,7 @@
case (_object isKindOf "House_F") : { _properties = ["Building", round(sizeOf (typeof _object))*10, round(sizeOf (typeof _object))*100];};
case (_object isKindOf "Car") : { _properties = ["Vehicle", round(sizeOf (typeof _object))*5, round(sizeOf (typeof _object))*10];};
case (_object isKindOf "Man") : { _properties = [name _object, 5, 10]; };
case (_object isKindOf "Things") : { _properties = ["Object", round(sizeOf (typeof _object)), round(sizeOf (typeof _object))];};
case (_object isKindOf "Thing") : { _properties = ["Thing", round(sizeOf (typeof _object))*3, round(sizeOf (typeof _object))*6];};
default { _properties = ["", 0,0];};
};
_properties;
Expand Down

0 comments on commit fd5ad7f

Please sign in to comment.