You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
You can escape as CI or MTF even when you're not cuffed
To Reproduce
Steps to reproduce the behavior:
Change your class to CI or MTF
Go to the surface escape
Expected behavior
Nothing
Server logs
I don't think the vsr allows me to do that, because localadmin logs contains other users IP
Copy of current CU config section
The problem is now fixed in #136 and I don't want to leak my config anymore
EXILED Version ("latest" is not a version):
8.8.1
Results of show plugins command in console: Command show does not exist!
(here's plym show instead)
The problem is now fixed in #136 and I don't want to leak my plugins anymore Additional context https://youtu.be/BEzhoHXG7f8
The text was updated successfully, but these errors were encountered:
i confirm that here is the method that handles the escape, no check for if the player is cuffed or not and both case alwas leads to the chaosConscript role.
public void OnEscaping(EscapingEventArgs ev)
{
if (ev.EscapeScenario is EscapeScenario.CustomEscape)
{
ev.NewRole = ev.Player.Role.Type switch
{
RoleTypeId.FacilityGuard or RoleTypeId.NtfPrivate or RoleTypeId.NtfSergeant or RoleTypeId.NtfCaptain or RoleTypeId.NtfSpecialist => RoleTypeId.ChaosConscript,
RoleTypeId.ChaosConscript or RoleTypeId.ChaosMarauder or RoleTypeId.ChaosRepressor or RoleTypeId.ChaosRifleman => RoleTypeId.ChaosConscript,
_ => RoleTypeId.None,
};
ev.IsAllowed = ev.NewRole is not RoleTypeId.None;
}
}
Describe the bug
You can escape as CI or MTF even when you're not cuffed
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Nothing
Server logs
I don't think the vsr allows me to do that, because localadmin logs contains other users IP
Copy of current CU config section
The problem is now fixed in #136 and I don't want to leak my config anymore
EXILED Version ("latest" is not a version):
8.8.1
Results of
show plugins
command in console:Command show does not exist!
(here's plym show instead)
The problem is now fixed in #136 and I don't want to leak my plugins anymore
Additional context
https://youtu.be/BEzhoHXG7f8
The text was updated successfully, but these errors were encountered: