From f7246e3a4011a0ab244bfba572eb78d4119de0ed Mon Sep 17 00:00:00 2001 From: Necaladun Date: Tue, 15 Apr 2014 00:37:27 +0930 Subject: [PATCH] Swap NT Rep and Customs Officer costs 30 for NT Rep, 15 for Customs Officer to represent their importance. --- code/WorkInProgress/ZomgPonies/karma.dm | 4 ++-- code/modules/client/client procs.dm | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/code/WorkInProgress/ZomgPonies/karma.dm b/code/WorkInProgress/ZomgPonies/karma.dm index 562139e92be..46d38e35f28 100644 --- a/code/WorkInProgress/ZomgPonies/karma.dm +++ b/code/WorkInProgress/ZomgPonies/karma.dm @@ -144,8 +144,8 @@ You've gained [totalkarma] total karma in your time here.
"} /client/proc/karmashopmenu() var/dat = {"Karma Shop
Unlock Barber -- 5KP
- Unlock Nanotrasen Representative -- 15KP
- Unlock Customs Officer -- 30KP
+ Unlock Nanotrasen Representative -- 30KP
+ Unlock Customs Officer -- 15KP
Unlock BlueShield -- 30KP

Unlock Machine People -- 15KP
diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index db856725acf..101427d0df1 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -58,15 +58,15 @@ else src.DB_job_unlock("Barber",5) if("2") - if(karma <15) - usr << "You do not have enough karma!" - else - src.DB_job_unlock("Nanotrasen Representative",15) - if("3") if(karma <30) usr << "You do not have enough karma!" else - src.DB_job_unlock("Customs Officer",30) + src.DB_job_unlock("Nanotrasen Representative",30) + if("3") + if(karma <15) + usr << "You do not have enough karma!" + else + src.DB_job_unlock("Customs Officer",15) if("4") if(karma <30) usr << "You do not have enough karma!"