mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 06:29:23 +01:00
Fixes proc arguments
This commit is contained in:
@@ -49,7 +49,7 @@
|
||||
return 0
|
||||
return 1
|
||||
|
||||
/client/proc/handle_spam_prevention(var/message, var/mute_type)
|
||||
/client/proc/handle_spam_prevention(message, mute_type)
|
||||
if(config.automute_on && !holder && src.last_message == message)
|
||||
src.last_message_count++
|
||||
if(src.last_message_count >= SPAM_TRIGGER_AUTOMUTE)
|
||||
|
||||
@@ -516,7 +516,7 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set
|
||||
popup.open(0)
|
||||
return
|
||||
|
||||
proc/SetJobPreferenceLevel(var/datum/job/job, var/level)
|
||||
proc/SetJobPreferenceLevel(datum/job/job, level)
|
||||
if (!job)
|
||||
return 0
|
||||
|
||||
@@ -618,7 +618,7 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set
|
||||
job_engsec_low = 0
|
||||
|
||||
|
||||
proc/GetJobDepartment(var/datum/job/job, var/level)
|
||||
proc/GetJobDepartment(datum/job/job, level)
|
||||
if(!job || !level) return 0
|
||||
switch(job.department_flag)
|
||||
if(CIVILIAN)
|
||||
|
||||
Reference in New Issue
Block a user