public void pushEventGoodEquipped(String message) {
try {
JSONObject eventJSON = new JSONObject(message);
BusProvider.getInstance().post(new GoodEquippedEvent(eventJSON.getString("itemId"), this));
} catch (JSONException e) {
SoomlaUtils.LogError(TAG, "(when pushing event) This is BAD! couldn't create JSON for onGoodEquipped event.");
}
}