quick fix

This commit is contained in:
Metis
2024-10-16 14:48:47 -04:00
parent 58b055dbad
commit 149d93f83f
2 changed files with 9 additions and 9 deletions
+8 -8
View File
@@ -63,21 +63,21 @@ GLOBAL_LIST_INIT(uncapped_resize_areas, list(/area/command/bridge, /area/mainten
// Handle Awards
if(client)
if(fatness > FATNESS_LEVEL_BLOB)
client.give_award(/datum/award/achievement/fat/blob, H)
client.give_award(/datum/award/achievement/fat/blob, src)
if(fatness > 10000)
client.give_award(/datum/award/achievement/fat/milestone_one, H)
client.give_award(/datum/award/achievement/fat/milestone_one, src)
if(fatness > 25000)
client.give_award(/datum/award/achievement/fat/milestone_two, H)
client.give_award(/datum/award/achievement/fat/milestone_two, src)
if(fatness > 50000)
client.give_award(/datum/award/achievement/fat/milestone_three, H)
client.give_award(/datum/award/achievement/fat/milestone_three, src)
if(fatness > 100000)
client.give_award(/datum/award/achievement/fat/milestone_four, H)
client.give_award(/datum/award/achievement/fat/milestone_four, src)
if(fatness > 500000)
client.give_award(/datum/award/achievement/fat/milestone_five, H)
client.give_award(/datum/award/achievement/fat/milestone_five, src)
if(fatness > 1000000)
client.give_award(/datum/award/achievement/fat/milestone_six, H)
client.give_award(/datum/award/achievement/fat/milestone_six, src)
if(fatness > 10000000)
client.give_award(/datum/award/achievement/fat/milestone_seven, H)
client.give_award(/datum/award/achievement/fat/milestone_seven, src)
return TRUE
+1 -1
View File
@@ -131,7 +131,7 @@
#define GLUTTONY_BLOB "Blob"
#define GLUTTONY_MILESTONE_ONE "Gluttony Milestone One"
#define GLUTTONY_MILESTONE_TWO "Gluttony Milestone Two"
#define GLUTTONY_MILESTONE_THEE "Gluttony Milestone Three"
#define GLUTTONY_MILESTONE_THREE "Gluttony Milestone Three"
#define GLUTTONY_MILESTONE_FOUR "Gluttony Milestone Four"
#define GLUTTONY_MILESTONE_FIVE "Gluttony Milestone Five"
#define GLUTTONY_MILESTONE_SIX "Gluttony Milestone Six"