diff --git a/code/modules/modular_computers/computers/subtypes/preset_laptop_vr.dm b/code/modules/modular_computers/computers/subtypes/preset_laptop_vr.dm index f022633307..5f7b2025b0 100644 --- a/code/modules/modular_computers/computers/subtypes/preset_laptop_vr.dm +++ b/code/modules/modular_computers/computers/subtypes/preset_laptop_vr.dm @@ -20,13 +20,21 @@ battery_module = new/obj/item/weapon/computer_hardware/battery_module/super(src) battery_module.charge_to_full() +//Fancy Schmancy - this is defined in normal file, just swapping the icon +/obj/item/modular_computer/laptop/preset/custom_loadout/elite + name = "elite laptop computer" + desc = "Fancy shcmancy laptop." + icon_state_unpowered = "elite-open" + icon_state = "elite-open" + icon_state_closed = "elite-closed" + //Alien/Human hybrid tech /obj/item/modular_computer/laptop/preset/custom_loadout/hybrid name = "hybrid laptop computer" desc = "Weird glowy alien/human crossover tech." - icon_state_unpowered = "xenoware-open" - icon_state = "xenoware-open" - icon_state_closed = "xenoware-closed" + icon_state_unpowered = "hybrid-open" + icon_state = "hybrid-open" + icon_state_closed = "hybrid-closed" /obj/item/modular_computer/laptop/preset/custom_loadout/hybrid/install_default_hardware() ..() @@ -38,11 +46,3 @@ card_slot = new/obj/item/weapon/computer_hardware/card_slot(src) battery_module = new/obj/item/weapon/computer_hardware/battery_module/lambda(src) battery_module.charge_to_full() - -//Fancy Schmancy - this is defined in normal file, just swapping the icon -/obj/item/modular_computer/laptop/preset/custom_loadout/elite - name = "elite laptop computer" - desc = "Gold trim on a laptop? Why not." - icon_state_unpowered = "super-open" - icon_state = "super-open" - icon_state_closed = "super-closed" diff --git a/icons/obj/modular_laptop_vr.dmi b/icons/obj/modular_laptop_vr.dmi index c9104c0843..4294fa4370 100644 Binary files a/icons/obj/modular_laptop_vr.dmi and b/icons/obj/modular_laptop_vr.dmi differ