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!"