initial port

This commit is contained in:
shellspeed1
2022-09-09 00:29:20 -07:00
parent 33ee9f5a19
commit fbc80cf829
11 changed files with 321 additions and 15 deletions
+10 -3
View File
@@ -422,7 +422,7 @@ GLOBAL_LIST_INIT(blacklisted_builds, list(
if( (world.address == address || !address) && !GLOB.host )
GLOB.host = key
world.update_status()
if(holder)
add_admin_verbs()
var/admin_memo_note = get_message_output("memo")
@@ -867,10 +867,17 @@ GLOBAL_LIST_INIT(blacklisted_builds, list(
ip_intel = res.intel
/client/Click(atom/object, atom/location, control, params, ignore_spam = FALSE, extra_info)
if(last_click > world.time - world.tick_lag)
/*if(last_click > world.time - world.tick_lag)
return
last_activity = world.time
last_click = world.time
last_click = world.time*/
if(!control)
return
if(click_intercept_time)
if(click_intercept_time >= world.time)
click_intercept_time = 0 //Reset and return. Next click should work, but not this one.
return
click_intercept_time = 0 //Just reset. Let's not keep re-checking forever.
var/list/L = params2list(params)
if(L["drag"])