mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 19:22:56 +00:00
Fix for #4445.
This commit is contained in:
@@ -32,6 +32,9 @@
|
|||||||
build_click(src, client.buildmode, params, A)
|
build_click(src, client.buildmode, params, A)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if(control_disabled || stat)
|
||||||
|
return
|
||||||
|
|
||||||
var/list/modifiers = params2list(params)
|
var/list/modifiers = params2list(params)
|
||||||
if(modifiers["middle"])
|
if(modifiers["middle"])
|
||||||
MiddleClickOn(A)
|
MiddleClickOn(A)
|
||||||
@@ -46,7 +49,8 @@
|
|||||||
CtrlClickOn(A)
|
CtrlClickOn(A)
|
||||||
return
|
return
|
||||||
|
|
||||||
if(control_disabled || stat || world.time <= next_move) return
|
if(world.time <= next_move)
|
||||||
|
return
|
||||||
next_move = world.time + 9
|
next_move = world.time + 9
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -123,4 +127,4 @@
|
|||||||
else
|
else
|
||||||
// disable/6 is not in Topic; disable/5 disables both temporary and permenant shock
|
// disable/6 is not in Topic; disable/5 disables both temporary and permenant shock
|
||||||
Topic("aiDisable=5", list("aiDisable"="5"), 1)
|
Topic("aiDisable=5", list("aiDisable"="5"), 1)
|
||||||
return
|
return
|
||||||
Reference in New Issue
Block a user