Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions code/modules/admin/admin_ranks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -141,24 +141,3 @@ var/global/list/admin_ranks = list() //list of all ranks with associated
msg += "\t[ckey] - [rank]\n"
testing(msg)
#endif


#ifdef TESTING
/client/verb/changerank(newrank in admin_ranks)
if(holder)
holder.rank = newrank
holder.rights = admin_ranks[newrank]
else
holder = new /datum/admins(newrank,admin_ranks[newrank],ckey)
remove_admin_verbs()
holder.associate(src)

/client/verb/changerights(newrights as num)
if(holder)
holder.rights = newrights
else
holder = new /datum/admins("testing",newrights,ckey)
remove_admin_verbs()
holder.associate(src)

#endif
4 changes: 4 additions & 0 deletions code/world.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
//This file is just for the necessary /world definition
//Try looking in game/world.dm

#define TESTING
#define GC_FAILURE_HARD_LOOKUP
#define FIND_REF_SKIP_CLIENTS

/world
mob = /mob/new_player
turf = /turf/space
Expand Down