tested and working (#2024)

Co-authored-by: Ranged <nickvanderkroon@gmail.com>
This commit is contained in:
NotRanged
2020-12-03 18:22:04 +01:00
committed by GitHub
parent 243ff9d601
commit b4fade2405
6 changed files with 87 additions and 0 deletions

View File

@@ -115,6 +115,10 @@
#define ui_borg_camera "CENTER+3:21,SOUTH:5"
#define ui_borg_alerts "CENTER+4:21,SOUTH:5"
#define ui_borg_language_menu "CENTER+4:21,SOUTH+1:5"
// SKYRAT EDIT ADDITION BEGIN - Cyborg PDA
#define ui_borg_pda_send "CENTER+5:21,SOUTH:5" // To the right of the alert panel
#define ui_borg_pda_log "CENTER+6:21,SOUTH:5"
// SKYRAT EDIT ADDITION END
//Aliens
#define ui_alien_health "EAST,CENTER-1:15"

View File

@@ -177,6 +177,20 @@
zone_select.update_icon()
static_inventory += zone_select
// SKYRAT EDIT ADDITION BEGIN: Cyborg PDA
//PDA message
using = new /atom/movable/screen/robot/pda_msg_send
using.screen_loc = ui_borg_pda_send
using.hud = src
static_inventory += using
//PDA log
using = new /atom/movable/screen/robot/pda_msg_show
using.screen_loc = ui_borg_pda_log
using.hud = src
static_inventory += using
// SKYRAT EDIT ADDITION END
/datum/hud/proc/toggle_show_robot_modules()
if(!iscyborg(mymob))