mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 04:30:44 +01:00
[NO GBP] Fixes a rare runtime in jetpack component code (#88097)
## About The Pull Request shrug ## Changelog 🆑 fix: Fixed a rare runtime in jetpack component code /🆑
This commit is contained in:
@@ -167,7 +167,7 @@
|
||||
if (get_dir(source, backup) == movement_dir || source.loc == backup.loc)
|
||||
return
|
||||
|
||||
if (!source.client.intended_direction || (source.client.intended_direction & get_dir(source, backup)))
|
||||
if (!source.client?.intended_direction || (source.client.intended_direction & get_dir(source, backup)))
|
||||
return
|
||||
|
||||
if (!should_trigger(source) || !check_on_move.Invoke(FALSE))
|
||||
|
||||
Reference in New Issue
Block a user