Hi fellow OOliter's, in the image below I get these messages and some while in flight but I'm sure it shouldn't state unknown source, or am I wrong?
Is this a bug or ???
Moderators: winston, another_commander, Getafix
Re: Is this a bug or ???
Not a bug but the way the Communications Log references messages from sources it cannot identify. Have a look at line 204 (according to Notepad++) of the commslog_mfd.js file located at ...\Oolite\ManagedAddOns\oolite.oxp.phkb.CommsLogMFD\Scripts. There you will find the following.
If you want to you can TWEAK the unidentified source part into whatever you like. Mine looks like this.
Be forewarned that once you head down the path of such simple and minor TWEAKS your journey has the potential to become never ending.
Code: Select all
var msg = "{unidentified source}: " + message;
Code: Select all
var msg = "{'Puter}: " + message;
Humor is the second most subjective thing on the planet
Brevity is the soul of wit and vulgarity is wit's downfall
Good Night and Good Luck - Read You Soon
Brevity is the soul of wit and vulgarity is wit's downfall
Good Night and Good Luck - Read You Soon
-
- Deadly
- Posts: 132
- Joined: Tue Jul 25, 2006 2:32 pm
Re: Is this a bug or ???
Thanks Nite Owl, I think I'll add something different because {unidentified source} sounds a little creepy. Or maybe add {phkb} because he's everywhere.Nite Owl wrote: ↑Mon Jun 06, 2022 6:25 pmNot a bug but the way the Communications Log references messages from sources it cannot identify. Have a look at line 204 (according to Notepad++) of the commslog_mfd.js file located at ...\Oolite\ManagedAddOns\oolite.oxp.phkb.CommsLogMFD\Scripts. There you will find the following.If you want to you can TWEAK the unidentified source part into whatever you like. Mine looks like this.Code: Select all
var msg = "{unidentified source}: " + message;
Be forewarned that once you head down the path of such simple and minor TWEAKS your journey has the potential to become never ending.Code: Select all
var msg = "{'Puter}: " + message;