1
Fork 0
mirror of https://github.com/thegeneralist01/Scene-Manager-DevRepo synced 2026-01-11 15:40:29 +01:00

Drivers now block permanent events upon collection

This commit is contained in:
Rich Dunne 2020-10-10 07:31:47 -06:00
parent 86206688b4
commit b760192024

View file

@ -37,6 +37,7 @@ namespace SceneManager
{ {
Vehicle.IsPersistent = true; Vehicle.IsPersistent = true;
Driver.IsPersistent = true; Driver.IsPersistent = true;
Driver.BlockPermanentEvents = true;
Logger.Log($"{Vehicle.Model.Name} and driver are now persistent."); Logger.Log($"{Vehicle.Model.Name} and driver are now persistent.");
} }