Removed notify and added warning follow roads

This commit is contained in:
Pax1601
2023-12-08 14:27:16 +01:00
parent 187b9be57a
commit 43d28ebe19
5 changed files with 12 additions and 2 deletions

View File

@@ -40,12 +40,14 @@ local lfs = require('lfs')
-- Print a debug message if the debug option is true
function Olympus.debug(message, displayFor)
if debug == true then
Olympus.log:info(message)
trigger.action.outText(message, displayFor)
end
end
-- Print a notify message
function Olympus.notify(message, displayFor)
Olympus.log:info(message)
trigger.action.outText(message, displayFor)
end