mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 15:17:01 +01:00
Merge branch 'master' into movespeed_modifiers_take_two
This commit is contained in:
@@ -98,7 +98,7 @@
|
||||
return FALSE
|
||||
var/temp = text2num(trim(str_val))
|
||||
if(!isnull(temp))
|
||||
config_entry_value = CLAMP(integer ? round(temp) : temp, min_val, max_val)
|
||||
config_entry_value = clamp(integer ? round(temp) : temp, min_val, max_val)
|
||||
if(config_entry_value != temp && !(datum_flags & DF_VAR_EDITED))
|
||||
log_config("Changing [name] from [temp] to [config_entry_value]!")
|
||||
return TRUE
|
||||
|
||||
@@ -484,3 +484,13 @@
|
||||
/datum/config_entry/flag/reopen_roundstart_suicide_roles_command_report
|
||||
|
||||
/datum/config_entry/flag/auto_profile
|
||||
|
||||
// DISCORD ROLE STUFFS
|
||||
// Using strings for everything because BYOND does not like numbers this big
|
||||
/datum/config_entry/flag/enable_discord_autorole
|
||||
|
||||
/datum/config_entry/string/discord_token
|
||||
|
||||
/datum/config_entry/string/discord_guildid
|
||||
|
||||
/datum/config_entry/string/discord_roleid
|
||||
|
||||
Reference in New Issue
Block a user