Преглед изворни кода

Follow up 9b4d922, missing parentheses at 9b4d922#diff-85d990dde8caf2d72d1e2b0f7dcf9786R2254

Signed-off-by: Cydh Ramdh <house.bad@gmail.com>
Cydh Ramdh пре 10 година
родитељ
комит
929acd2ca6
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/map/clif.c

+ 1 - 1
src/map/clif.c

@@ -2251,7 +2251,7 @@ void clif_additem(struct map_session_data *sd, int n, int amount, unsigned char
 #endif
 #if PACKETVER >= 20071002
 		/* Yellow color only for non-stackable item */
-		WFIFOW(fd,offs+27)=sd->status.inventory[n].bound && !itemdb_isstackable(sd->status.inventory[n].nameid) ? BOUND_DISPYELLOW : 0;
+		WFIFOW(fd,offs+27)=(sd->status.inventory[n].bound && !itemdb_isstackable(sd->status.inventory[n].nameid)) ? BOUND_DISPYELLOW : 0;
 #endif
 	}