Set Auto Reload to Nothing, it will still automatically reload.

Diablo

New member
hi.
I am using UCC+UIS.
Even if I set Auto Reload to Nothing in the Shootable Action Component, it automatically reloads when I equip a gun. I want to do all reloading manually.

화면 캡처 2023-05-30 143840.jpg

 
Hey Diablo good catch!

Hee is the fix. on line 415 of the ReloaderModule.cs script.
Please replace the condition to this:
Code:
if (m_AutoReload != 0  && CanReloadItem(false)) {
    ReloadItem(true);
}
 
Top