mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-21 03:55:05 +01:00
Fixed some runtimes.
Job system once again has -1 as unlimited. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2451 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -159,7 +159,7 @@ I kind of like the right click only--the window version can get a little confusi
|
||||
|
||||
// Hacky way of hopefully preventing a runtime error from happening
|
||||
if(vents.len < selection_position)
|
||||
vents.len = selection_position
|
||||
vents.len = selection_position//What the fuck is this I dont even, Right will likely have to fix this later
|
||||
|
||||
var/obj/machinery/atmospherics/unary/vent_pump/target_vent = vents[selection_position]
|
||||
if(target_vent)
|
||||
|
||||
@@ -151,7 +151,7 @@
|
||||
return 1
|
||||
|
||||
if(href_list["ready"])
|
||||
if (!src.client.authenticated)
|
||||
if (!client.authenticated)
|
||||
src << "You are not authorized to enter the game."
|
||||
return
|
||||
|
||||
@@ -165,7 +165,7 @@
|
||||
new_player_panel_proc()
|
||||
|
||||
if(href_list["observe"])
|
||||
if (!usr.client.authenticated)
|
||||
if (!client.authenticated)
|
||||
src << "You are not authorized to enter the game."
|
||||
return
|
||||
|
||||
@@ -191,7 +191,7 @@
|
||||
LateChoices()
|
||||
|
||||
if(href_list["SelectedJob"])
|
||||
if(!usr.client.authenticated)
|
||||
if(!client.authenticated)
|
||||
src << "You are not authorized to enter the game."
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user