passage_settings.js 314 B

123456789101112
  1. Config.passages.descriptions = function () {
  2. let result = '';
  3. if(State.variables.time){
  4. result = State.variables.time.dateTimeString;
  5. }
  6. if(State.variables.pc?.name_nick)
  7. result = State.variables.pc?.name_nick + ' ' + result;
  8. if(result)
  9. return result;
  10. return false;
  11. };