Skip to content

Commit

Permalink
Revert All of Cael_Aislinn's stuff from the last day, committed by Cib.
Browse files Browse the repository at this point in the history
Reason: Compile Error, hung server. Damnit Cael.
  • Loading branch information
Hawk-v3 committed Jun 15, 2012
1 parent 9064a15 commit e68a32c
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 525 deletions.
5 changes: 0 additions & 5 deletions baystation12.dme
Expand Up @@ -206,7 +206,6 @@
#define FILE_DIR "icons/vending_icons"
#define FILE_DIR "interface"
#define FILE_DIR "maps"
#define FILE_DIR "maps/backup"
#define FILE_DIR "maps/RandomZLevels"
#define FILE_DIR "sound"
#define FILE_DIR "sound/AI"
Expand Down Expand Up @@ -1167,11 +1166,7 @@
#include "code\WorkInProgress\AI_Visibility\minimap.dm"
#include "code\WorkInProgress\AI_Visibility\util.dm"
#include "code\WorkInProgress\animusstation\atm.dm"
#include "code\WorkInProgress\Cael_Aislinn\energy_field.dm"
#include "code\WorkInProgress\Cael_Aislinn\external_shield_gen.dm"
#include "code\WorkInProgress\Cael_Aislinn\power_monitor.dm"
#include "code\WorkInProgress\Cael_Aislinn\shield_capacitor.dm"
#include "code\WorkInProgress\Cael_Aislinn\shield_gen.dm"
#include "code\WorkInProgress\Cael_Aislinn\Rust\core_field.dm"
#include "code\WorkInProgress\Cael_Aislinn\Rust\core_gen.dm"
#include "code\WorkInProgress\Cael_Aislinn\Rust\core_monitor.dm"
Expand Down
41 changes: 0 additions & 41 deletions code/WorkInProgress/Cael_Aislinn/energy_field.dm

This file was deleted.

64 changes: 0 additions & 64 deletions code/WorkInProgress/Cael_Aislinn/external_shield_gen.dm

This file was deleted.

156 changes: 0 additions & 156 deletions code/WorkInProgress/Cael_Aislinn/shield_capacitor.dm

This file was deleted.

4 changes: 2 additions & 2 deletions code/ZAS/Creation.dm
Expand Up @@ -67,10 +67,10 @@ proc/FloodFill(turf/start)

return closed

turf/proc/ZCanPass(turf/T, var/include_space = 0)
turf/proc/ZCanPass(turf/T)
//Fairly standard pass checks for turfs, objects and directional windows. Also stops at the edge of space.

if(istype(T,/turf/space) && !include_space) return 0
if(istype(T,/turf/space)) return 0
else
if(T.blocks_air||blocks_air)
return 0
Expand Down
3 changes: 1 addition & 2 deletions code/defines/obj/supplypacks.dm
Expand Up @@ -804,8 +804,7 @@

/datum/supply_packs/randomised/contraband
num_contained = 5
//We randomly pick 5 items from this list through the constructor, look below
contains = list("/obj/item/weapon/contraband/poster","/obj/item/weapon/cigpacket/dromedaryco","/obj/item/clothing/mask/cigarette/cigar/havana", "/obj/item/seeds/plumphelmet", "/obj/item/seeds/libertycap", "/obj/item/seeds/bloodtomato", "/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe", "/obj/item/weapon/reagent_containers/food/drinks/bottle/deadrum" )
contains = list("/obj/item/weapon/contraband/poster","/obj/item/weapon/cigpacket/dromedaryco") //We randomly pick 5 items from this list through the constructor, look below
name = "Contraband crate"
cost = 30
containertype = "/obj/structure/closet/crate"
Expand Down

1 comment on commit e68a32c

@caelaislinn
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there were two missing files. didn't the error message say something like that?

Please sign in to comment.