Skip to content

Commit

Permalink
Maw tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
TiviPlus authored and TiviPlus committed Oct 16, 2024
1 parent 1e83417 commit a19b6d8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/modules/xenomorph/maw.dm
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@
cooldown_time = 10 MINUTES
radial_icon_state = "acid_smoke_mortar"
smoke_type = /datum/effect_system/smoke_spread/xeno/acid
smokeradius = 10
smokeradius = 12
duration = 10

/datum/maw_ammo/smoke/acid_big/launch_animation(turf/target, obj/structure/xeno/acid_maw/maw)
. = ..()
playsound_z_humans(target.z, 'sound/voice/strategic_launch_detected.ogg', 80)
playsound_z_humans(target.z, 'sound/voice/strategic_launch_detected.ogg', 100)


/datum/maw_ammo/hugger
Expand Down Expand Up @@ -228,8 +228,8 @@
if(xeno_attacker.hivenumber != hivenumber)
balloon_alert(xeno_attacker, "wrong hive")
return FALSE
if(xeno_attacker.hive.living_xeno_ruler != xeno_attacker)
balloon_alert(xeno_attacker, "must be ruler")
if(!isxenoqueen(xeno_attacker) && !isxenoshrike(xeno_attacker) && !isxenoking(xeno_attacker) && !(xeno_attacker.xeno_flags & XENO_LEADER))
balloon_alert(xeno_attacker, "must be leader")
return FALSE
if(TIMER_COOLDOWN_CHECK(src, COOLDOWN_MAW_GLOB)) // repeat this every time after we have a sleep for quick feedback
var/timeleft = S_TIMER_COOLDOWN_TIMELEFT(src, COOLDOWN_MAW_GLOB)
Expand Down

0 comments on commit a19b6d8

Please sign in to comment.