Skip to content

Commit

Permalink
А (#1424)
Browse files Browse the repository at this point in the history
* А

* Update timer.lua

* F

Try

* Revert "F"

This reverts commit 8be8740.
  • Loading branch information
Krashly authored Aug 2, 2024
1 parent 4f92e01 commit f1a3d2b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions code/modules/events/grey_tide.dm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/datum/round_event_control/grey_tide
/* /datum/round_event_control/grey_tide // ARK STATION REMOVED
name = "Grey Tide"
typepath = /datum/round_event/grey_tide
max_occurrences = 2
Expand Down Expand Up @@ -55,4 +55,4 @@
// /obj/machinery/power/apc -- Signal turns the lighting channel off
/datum/round_event/grey_tide/end()
SEND_GLOBAL_SIGNAL(COMSIG_GLOB_GREY_TIDE, grey_tide_areas)
SEND_GLOBAL_SIGNAL(COMSIG_GLOB_GREY_TIDE, grey_tide_areas) */
4 changes: 2 additions & 2 deletions code/modules/power/cable.dm
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ GLOBAL_LIST_INIT(wire_node_generating_types, typecacheof(list(/obj/structure/gri
if(use(CABLE_RESTRAINTS_COST))
var/obj/item/restraints/handcuffs/cable/restraints = new(null, cable_color)
user.put_in_hands(restraints)
if("Noose") // ARK STATION ADDITION
if("Noose") // ARK STATION ADDITION START
if(amount < 30)
to_chat(user, "<span class='notice'>You don't have enough cable coil to make noose out of them</span>")
return
Expand All @@ -570,7 +570,7 @@ GLOBAL_LIST_INIT(wire_node_generating_types, typecacheof(list(/obj/structure/gri
if(!do_after(user, 3 SECONDS, user) || !use(30))
to_chat(user, "<span class='notice'>You fail to make cable noose, you need to be standing still to do it</span>")
return
new /obj/structure/chair/noose(get_turf(user))
new /obj/structure/chair/noose(get_turf(user)) // ARK STATION ADDITION END
update_appearance()


Expand Down
3 changes: 2 additions & 1 deletion lua/timer.lua
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ __Timer_timer_process = function(seconds_per_tick)
end

function Timer.wait(time)
local yieldIndex = _exec.next_yield_index
__add_internal_timer(function()
SSlua:queue_resume(state.state, _exec.next_yield_index)
SSlua:queue_resume(state.state, yieldIndex)
end, time * 10, false)
coroutine.yield()
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
TRAIT_LITERATE,
TRAIT_DRINKS_BLOOD,
TRAIT_USES_SKINTONES,
TRAIT_NOTHIRST, // ARK STATION EDIT
)
inherent_biotypes = MOB_HUMANOID | MOB_ORGANIC
exotic_bloodtype = "U"
Expand Down
3 changes: 3 additions & 0 deletions zov_modular_arkstation/modules/big-sprites-pack/code.dm
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
/turf/open/floor/catwalk_floor
icon = 'zov_modular_arkstation/modules/big-sprites-pack/catwalks.dmi'

// /obj/structure/lattice/catwalk
// icon = 'zov_modular_arkstation/modules/big-sprites-pack/catwalks.dmi'

/atom/movable/screen/fullscreen/cult_teleportation
name = "cult teleportation"
icon = 'zov_modular_arkstation/modules/big-sprites-pack/cultTP.dmi'
Expand Down

0 comments on commit f1a3d2b

Please sign in to comment.