ReactiveDrop / reactivedrop_public_src

Alien Swarm: Reactive Drop game source code and issue tracker.
https://reactivedrop.com
104 stars 35 forks source link

The Vscript function "CASW_Sentry_Top::PreventFiringUntil" dosen't work for a "asw_sentry_top_icer". #764

Closed IAFJaeger closed 1 month ago

IAFJaeger commented 1 month ago

The Vscript function "CASW_Sentry_Top::PreventFiringUntil" dosen't work for a "asw_sentry_top_icer".

hSentryTop <- Entities.FindByClassname( null, "asw_sentry_top_icer" );
printl( hSentryTop );
hSentryTop.PreventFiringUntil( Time()+9999.0 );  // this dosn't work

hSentryTop <- Entities.FindByClassname( null, "asw_sentry_top_cannon" );
printl( hSentryTop );
hSentryTop.PreventFiringUntil( Time()+9999.0 );  // this works
IAFJaeger commented 1 month ago

It dosn't work for a asw_weapon_sentry_flamer too.