Placement distance is probably defined in a base class that all placeables inherit. A lazy developer probably changed this distance in the base class instead of the bomb placeable class where it should override it for bombs only.

Example for basic inheritance:

In this C++ example you have a field in the base class which holds the brand of a vehicle. You could override this in the “Car” class. But the devs changed it in the base class “Vehicle” which changes it for every class that inherits “Vehicle” by default.

#incompetentdevelopers

1 Like