forked from Citadel-Station-13/Citadel-Station-13-RP
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/MonaraMir/Citadel-Station…
- Loading branch information
Showing
538 changed files
with
5,129 additions
and
5,639 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 8 additions & 4 deletions
12
code/__DEFINES/dcs/signals/signals_mob/signals_mob_inventory.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
/// A mob has just equipped an item. Called on [/mob] from base of [/obj/item/equipped()]: (/obj/item/equipped_item, slot) | ||
//#define COMSIG_MOB_EQUIPPED_ITEM "mob_equipped_item" | ||
/// A mob has just unequipped an item. | ||
//#define COMSIG_MOB_UNEQUIPPED_ITEM "mob_unequipped_item" | ||
/// A mob has just equipped an item. Called on [/mob] from base of [/obj/item/equipped()]: (/obj/item/equipped_item, slot, inv_op_flags) | ||
#define COMSIG_MOB_ITEM_EQUIPPED "mob_equipped_item" | ||
/// A mob has just unequipped an item. Called on [/mob] from base of [/obj/item/unequipped()]: (/obj/item/equipped_item, slot, inv_op_flags) | ||
#define COMSIG_MOB_ITEM_UNEQUIPPED "mob_unequipped_item" | ||
/// A mob has just picked up an item. Called on [/mob] from base of [/obj/item/pickup()]: (/obj/item/equipped_item, inv_op_flags, old_loc) | ||
#define COMSIG_MOB_ITEM_PICKUP "mob_pickup_item" | ||
/// A mob has just dropped an item. Called on [/mob] from base of [/obj/item/dropped()]: (/obj/item/equipped_item, inv_op_flags, new_loc) | ||
#define COMSIG_MOB_ITEM_DROPPED "mob_dropped_item" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
code/__DEFINES/dcs/signals/signals_mob/signals_mob_mobility.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/// sent at the very end of /mob/update_mobility(): (new_mobility_flags) | ||
#define COMSIG_MOB_ON_UPDATE_MOBILITY "mob_updated_mobility" | ||
/// sent at the very end of /mob/set_resitng(): (new_resting) | ||
#define COMSIG_MOB_ON_SET_RESTING "mob_set_resting" | ||
/// sent at the very end of /mob/update_lying(): (old_lying, new_lying) | ||
#define COMSIG_MOB_ON_UPDATE_LYING "mob_updated_lying" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.