Skip to content

Commit

Permalink
Fixes the thing in response to review
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobbanz1 committed Oct 20, 2023
1 parent 7c3622a commit b8022d8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nsv13/code/game/machinery/computer/tactical.dm
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@
data["flakrange"] = linked.get_flak_range(linked.last_target)
data["integrity"] = linked.obj_integrity
data["max_integrity"] = linked.max_integrity
if(istype(linked, /obj/structure/overmap/small_craft/transport))
var/obj/structure/overmap/small_craft/transport/small_ship = linked
if(istype(linked, /obj/structure/overmap/small_craft))
var/obj/structure/overmap/small_craft/small_ship = linked
var/obj/item/fighter_component/armour_plating/A = small_ship.loadout.get_slot(HARDPOINT_SLOT_ARMOUR)
data["has_quadrant"] = FALSE
data["armour_integrity"] = (A) ? A.obj_integrity : 0
Expand Down Expand Up @@ -165,8 +165,8 @@
data["flakrange"] = linked.get_flak_range(linked.last_target)
data["integrity"] = linked.obj_integrity
data["max_integrity"] = linked.max_integrity
if(istype(linked, /obj/structure/overmap/small_craft/transport))
var/obj/structure/overmap/small_craft/transport/small_ship = linked
if(istype(linked, /obj/structure/overmap/small_craft))
var/obj/structure/overmap/small_craft/small_ship = linked
var/obj/item/fighter_component/armour_plating/A = small_ship.loadout.get_slot(HARDPOINT_SLOT_ARMOUR)
data["has_quadrant"] = FALSE
data["armour_integrity"] = (A) ? A.obj_integrity : 0
Expand Down

0 comments on commit b8022d8

Please sign in to comment.