Nephilim Shrine renames Chaos Shrine

This commit is contained in:
2024-04-02 20:01:25 -05:00
parent dcc92fd89d
commit 850d2dfea0
@@ -1213,7 +1213,7 @@ public class PlaceAssetMsgHandler extends AbstractClientMsgHandler {
private boolean createShrine(PlayerCharacter player, PlacementInfo buildingInfo, Zone currentZone) { private boolean createShrine(PlayerCharacter player, PlacementInfo buildingInfo, Zone currentZone) {
Blueprint blueprint; Blueprint blueprint;
Building newMesh; Building newMesh = null;
Shrine newShrine; Shrine newShrine;
City city; City city;
ShrineType shrineType; ShrineType shrineType;
@@ -1274,6 +1274,9 @@ public class PlaceAssetMsgHandler extends AbstractClientMsgHandler {
break; break;
} }
} }
if(blueprint.getName().equals("Nephilim Shrine ") && newMesh != null){
newMesh.setName("Chaos Shrine");
}
return true; return true;
} }