Skip to content

Commit

Permalink
+
Browse files Browse the repository at this point in the history
  • Loading branch information
SmiLeYre committed Feb 11, 2025
1 parent c709676 commit cca7e85
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/game/objects/structures/fluff.dm
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ obj/structure/bars/steel
/obj/structure/fluff/statue/evil/attackby(obj/item/W, mob/user, params)
if(!HAS_TRAIT(user, TRAIT_COMMIE))
return
if(W.item_flags & MATTIAS_PROPERT)
if(W.item_flags & MATTIAS_PROPERTY)
to_chat(user, span_warning("This item belongs to Matthios."))
return
var/donatedamnt = W.get_real_price()
Expand Down
2 changes: 1 addition & 1 deletion code/modules/roguetown/roguemachine/hoardmaster.dm
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
for(l=1,l<=shoplength,l++)
var/pathi = pick(PA.contains)
var/obj/item/I = new pathi(get_turf(M))
I.item_flag |= MATTIAS_PROPERTY
I.item_flags |= MATTIAS_PROPERTY
if(shoplength == 1)
M.put_in_hands(I)
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/datum/triumph_buy/giant/on_activate(mob/living/carbon/human/H)
if(!usr)
return
usr.client.prefs.next_special_trait = /datum/special_trait/backproblems
usr.client.prefs.next_special_trait = /datum/special_trait/giant
if(usr.client.prefs.next_special_trait)
log_game("SPECIALS: Rolled [usr.client.prefs.next_special_trait] for ckey: [usr.ckey]")
print_special_text(usr, usr.client.prefs.next_special_trait)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/datum/triumph_buy/bleublood/on_activate(mob/living/carbon/human/H)
if(!usr)
return
usr.client.prefs.next_special_trait = /datum/special_trait/bleublood
usr.client.prefs.next_special_trait = /datum/special_trait/noble
if(usr.client.prefs.next_special_trait)
log_game("SPECIALS: Rolled [usr.client.prefs.next_special_trait] for ckey: [usr.ckey]")
print_special_text(usr, usr.client.prefs.next_special_trait)
Expand Down

0 comments on commit cca7e85

Please sign in to comment.