Skip to content

Commit

Permalink
Modular Traders ver 1
Browse files Browse the repository at this point in the history
  • Loading branch information
800maximum123 committed Jul 25, 2024
1 parent 602a432 commit 7e47b81
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 21 deletions.
1 change: 0 additions & 1 deletion baystation12.dme
Original file line number Diff line number Diff line change
Expand Up @@ -2646,7 +2646,6 @@
#include "code\modules\overmap\overmap_shuttle.dm"
#include "code\modules\overmap\sectors.dm"
#include "code\modules\overmap\spacetravel.dm"
#include "code\modules\overmap\trading_locations.dm"
#include "code\modules\overmap\contacts\_contacts.dm"
#include "code\modules\overmap\contacts\contact_sensors.dm"
#include "code\modules\overmap\contacts\tracker.dm"
Expand Down
20 changes: 0 additions & 20 deletions code/modules/overmap/trading_locations.dm

This file was deleted.

1 change: 1 addition & 0 deletions mods/_fd/expanded_traders/_expanded_traders.dme
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include "_expanded_traders.dm"

#include "code/ai.dm"
#include "code/trading_locations.dm"

#include "code/preset_console.dm"

Expand Down
19 changes: 19 additions & 0 deletions mods/_fd/expanded_traders/code/trading_locations.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/obj/overmap/trading
name = "station"
desc = "A trading station."
icon = 'mods/_fd/fd_assets/icons/overmap.dmi'
icon_state = "trading_sector"
scannable = TRUE
requires_contact = TRUE // Whether or not the effect must be identified by ship sensors before being seen.
instant_contact = TRUE // Do we instantly identify ourselves to any ship in sensors range?
plane = 4

var/datum/trader/trader_merchant_datum

/obj/overmap/trading/on_update_icon()
return

/obj/overmap/trading/ship
name = "ship"
desc = "A trading ship."
icon_state = "trading_ship"
Binary file added mods/_fd/fd_assets/icons/overmap.dmi
Binary file not shown.

0 comments on commit 7e47b81

Please sign in to comment.