mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
Moved custom_synthetic.dmi into a proper define.
This commit is contained in:
@@ -278,7 +278,7 @@ var/list/ai_verbs_default = list(
|
|||||||
|
|
||||||
if(Entry[1] == src.ckey && Entry[2] == src.real_name)
|
if(Entry[1] == src.ckey && Entry[2] == src.real_name)
|
||||||
custom_sprite = 1 //They're in the list? Custom sprite time
|
custom_sprite = 1 //They're in the list? Custom sprite time
|
||||||
icon = 'icons/mob/custom-synthetic.dmi'
|
icon = CUSTOM_ITEM_ROBOT
|
||||||
|
|
||||||
//if(icon_state == initial(icon_state))
|
//if(icon_state == initial(icon_state))
|
||||||
var/icontype = ""
|
var/icontype = ""
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ var/list/robot_custom_icons
|
|||||||
var/rname = robot_custom_icons[ckey]
|
var/rname = robot_custom_icons[ckey]
|
||||||
if(rname && rname == real_name)
|
if(rname && rname == real_name)
|
||||||
custom_sprite = 1
|
custom_sprite = 1
|
||||||
icon = 'icons/mob/custom-synthetic.dmi'
|
icon = CUSTOM_ITEM_ROBOT
|
||||||
if(icon_state == "robot")
|
if(icon_state == "robot")
|
||||||
icon_state = "[ckey]-Standard"
|
icon_state = "[ckey]-Standard"
|
||||||
|
|||||||
@@ -977,6 +977,9 @@ var/list/be_special_flags = list(
|
|||||||
#ifndef CUSTOM_ITEM_MOB
|
#ifndef CUSTOM_ITEM_MOB
|
||||||
#define CUSTOM_ITEM_MOB 'icons/mob/custom_items_mob.dmi'
|
#define CUSTOM_ITEM_MOB 'icons/mob/custom_items_mob.dmi'
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef CUSTOM_ITEM_ROBOT
|
||||||
|
#define CUSTOM_ITEM_ROBOT 'icons/mob/custom_synthetic.dmi'
|
||||||
|
#endif
|
||||||
|
|
||||||
//default item on-mob icons
|
//default item on-mob icons
|
||||||
#define INV_HEAD_DEF_ICON 'icons/mob/head.dmi'
|
#define INV_HEAD_DEF_ICON 'icons/mob/head.dmi'
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 294 KiB |
0
icons/mob/custom_synthetic.dmi
Normal file
0
icons/mob/custom_synthetic.dmi
Normal file
Reference in New Issue
Block a user