diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-08-27 02:07:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-27 02:07:41 +0200 |
commit | 3ec9e26cb4a5a94bd8770f51c99f2a9e11df9b7f (patch) | |
tree | a27e362e9918be54c06cdf1e9b299baf71245f7e /modules | |
parent | 68fc2146d1431973d3f1e7afd743a9cc8da8cac4 (diff) | |
parent | 9a1d9a41eba29bbb9608b0b0f8f9c2ca65ab426f (diff) |
Merge pull request #10669 from hpvb/fix-6118
Add several missing Null checks in _notification
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gridmap/grid_map_editor_plugin.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/gridmap/grid_map_editor_plugin.cpp b/modules/gridmap/grid_map_editor_plugin.cpp index 561efb9d0f..3bab1bfbc1 100644 --- a/modules/gridmap/grid_map_editor_plugin.cpp +++ b/modules/gridmap/grid_map_editor_plugin.cpp @@ -835,6 +835,9 @@ void GridMapEditor::_notification(int p_what) { duplicate_instance = RID(); } else if (p_what == NOTIFICATION_PROCESS) { + if (!node) { + return; + } Transform xf = node->get_global_transform(); |