File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ private void OnTick(object sender, EventArgs e)
42
42
|| Function . Call < bool > ( Hash . IS_PED_IN_ANY_VEHICLE , Game . Player . Character , true ) )
43
43
&& _isSupposedToBeRagdolled )
44
44
{
45
- Notification . Show ( "Caught ragdoll attempt?" ) ;
45
+ ThrowNotification ( "Caught ragdoll attempt?" ) ;
46
46
_isSupposedToBeRagdolled = false ;
47
47
}
48
48
}
@@ -85,13 +85,13 @@ private void OnKeyDown(object sender, KeyEventArgs key)
85
85
&& ! Game . Player . Character . IsDead )
86
86
{
87
87
_runRagdoll = true ;
88
- Notification . Show ( "Keybind passed" ) ;
88
+ ThrowNotification ( "Keybind passed" ) ;
89
89
}
90
90
else if ( Function . Call < bool > ( Hash . IS_CUTSCENE_ACTIVE )
91
91
|| Function . Call < bool > ( Hash . IS_PED_IN_ANY_VEHICLE , Game . Player . Character , true )
92
92
|| Game . Player . Character . IsDead )
93
93
{
94
- Notification . Show ( "Keybind failed" ) ;
94
+ ThrowNotification ( "Keybind failed" ) ;
95
95
}
96
96
}
97
97
You can’t perform that action at this time.
0 commit comments