Skip to content

Commit

Permalink
Merge branch 'Civ13:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
KanohaShinobi authored Jan 11, 2024
2 parents 1d71cd8 + 42ac20d commit 098e09b
Show file tree
Hide file tree
Showing 13 changed files with 1 addition and 17 deletions.
1 change: 0 additions & 1 deletion code/game/mob/living/carbon/human/human_life.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1340,7 +1340,6 @@
Weaken(15)

/mob/living/human/proc/handle_shock()
..()
if(status_flags & GODMODE) return FALSE //godmode
if(!can_feel_pain())
shock_stage = 0
Expand Down
1 change: 0 additions & 1 deletion code/game/mob/living/simple_animal/simple_animal.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1158,6 +1158,5 @@
/mob/living/simple_animal/proc/mutate()
if(mutation_variants == null)
return
..()

#undef GRAIN
1 change: 0 additions & 1 deletion code/game/objects/items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,6 @@

// apparently called whenever an item is removed from a slot, container, or anything else.
/obj/item/proc/dropped(mob/user as mob)
..()
plane = GAME_PLANE
spawn (1)
if (dropsound)
Expand Down
2 changes: 0 additions & 2 deletions code/game/objects/items/stacks/stack.dm
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,6 @@ obj/item/stack/Crossed(var/obj/item/stack/S)
spawn(0)
if (src && usr.using_object == src)
interact(usr)
else
..()
return

/obj/item/stack/examine(mob/user)
Expand Down
3 changes: 1 addition & 2 deletions code/game/objects/items/weapons/grenades/explosive.dm
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@

/obj/proc/fragmentate(var/turf/T, var/fragment_number = 30, var/spreading_range = 5, var/list/fragtypes=list(/obj/item/projectile/bullet/pellet/fragment/short_range = 1))
set waitfor = 0
..()


if(!T) return

var/list/target_turfs = getcircle(T, spreading_range)
Expand Down
1 change: 0 additions & 1 deletion code/game/objects/items/weapons/material/kitchen.dm
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@
var/suicide = FALSE // for the hari kiri action

/obj/item/weapon/material/kitchen/utensil/knife/proc/handle_suicide(mob/living/user)
..()
if (!ishuman(user))
return
var/mob/living/human/M = user
Expand Down
1 change: 0 additions & 1 deletion code/game/objects/items/weapons/sledgehammer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
if (!(user.has_empty_hand(both = FALSE)))
user << "<span class='warning'>You need both hands to swing the [src]!</span>"
return FALSE
..()

/obj/item/weapon/sledgehammer/stone/sledgehammer
name = "Stone Sledgehammer"
Expand Down
1 change: 0 additions & 1 deletion code/game/objects/structures/wild.dm
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,6 @@ var/list/seed_list_jungle
icon = current_icon

/obj/structure/wild/tree/live_tree/proc/change_season()
..()
if (radiation >= 15)
icon = deadicon
icon_state = deadicon_state
Expand Down
1 change: 0 additions & 1 deletion code/game/turfs/initialization/init.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
var/datum/turf_initializer/turf_initializer = null

/area/proc/initialize()
..()
for (var/turf/T in src)
T.initialize()
if (turf_initializer)
Expand Down
1 change: 0 additions & 1 deletion code/modules/1713/tools.dm
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,6 @@
if (!(user.has_empty_hand(both = FALSE)))
user << "<span class='warning'>You need both hands to use the [src]!</span>"
return FALSE
..()

/obj/item/weapon/wirecutters/boltcutters
name = "boltcutters"
Expand Down
3 changes: 0 additions & 3 deletions code/modules/1713/weapons/guns/mg/_stationary.dm
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,6 @@
layer = FLY_LAYER

/obj/item/weapon/gun/projectile/automatic/stationary/proc/started_using(mob/living/human/user)
..()

user.forceMove(loc)
user.dir = dir
user.pixel_x = pixel_x
Expand All @@ -156,7 +154,6 @@
break

/obj/item/weapon/gun/projectile/automatic/stationary/proc/stopped_using(mob/user as mob)
..()
user.pixel_x = 0
user.pixel_y = 0
for (var/datum/action/A in actions)
Expand Down
1 change: 0 additions & 1 deletion code/modules/organs/brain.dm
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@

/obj/item/organ/brain/proc/take_internal_damage(var/damage, var/silent)
set waitfor = 0
..()
if(damage >= 10) //This probably won't be triggered by oxyloss or mercury. Probably.
var/damage_secondary = damage * 0.20
owner.eye_blurry += damage_secondary
Expand Down
1 change: 0 additions & 1 deletion code/modules/projectiles/projectile.dm
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,6 @@
if (istype(target_mob, /mob/living/simple_animal/hostile/human) && target_mob.stat != DEAD && prob(33))
var/list/screamlist = list('sound/voice/screams/scream1.ogg','sound/voice/screams/scream2.ogg','sound/voice/screams/scream3.ogg','sound/voice/screams/scream4.ogg','sound/voice/screams/scream5.ogg','sound/voice/screams/scream6.ogg',)
playsound(loc, pick(screamlist), 100, extrarange = 50)
..()
//admin logs
if (!no_attack_log)
if (istype(firer, /mob))
Expand Down

0 comments on commit 098e09b

Please sign in to comment.