All pastes #2095937 Raw Edit

Frintezza ID Dark player

public xml v1 · immutable
#2095937 ·published 2011-12-23 00:53 UTC
rendered paste body
FinalEmperialTomb.java #onKill()			else if (npc.getNpcId() == DARK_CHOIR_PLAYER)			{-				world.darkChoirPlayerCount--;+				final int count; // concurrent atomic+				synchronized (world) { count = --world.darkChoirPlayerCount; }-				if (world.darkChoirPlayerCount < 1)+				if (count == 0)				{