diff --git a/iw4x/iw4x_00/maps/animated_models/foliage_tree_palm_bushy_3.gsc b/iw4x/iw4x_00/maps/animated_models/foliage_tree_palm_bushy_3.gsc deleted file mode 100644 index 2e1559f..0000000 --- a/iw4x/iw4x_00/maps/animated_models/foliage_tree_palm_bushy_3.gsc +++ /dev/null @@ -1,23 +0,0 @@ -#include common_scripts\utility; - -#using_animtree( "animated_props" ); -main() -{ - if( !isdefined ( level.anim_prop_models ) ) - level.anim_prop_models = []; - - // Would use isSP() but this runs before we can - mapname = tolower( getdvar( "mapname" ) ); - SP = true; - if ( string_starts_with( mapname, "mp_" ) ) - SP = false; - - model = "foliage_tree_palm_bushy_3"; - if ( SP ) - { - level.anim_prop_models[ model ][ "still" ] = %palmtree_bushy3_still; - level.anim_prop_models[ model ][ "strong" ] = %palmtree_bushy3_sway; - } - else - level.anim_prop_models[ model ][ "strong" ] = "palmtree_mp_bushy3_sway"; -}